Uses of Class
liquibase.statement.DatabaseFunction
-
Packages that use DatabaseFunction Package Description liquibase.change The change package contains the available database "changes".liquibase.change.core Technically, a Change expresses an intention for alter the structure of the Database.liquibase.database liquibase.database.core liquibase.datatype liquibase.statement -
-
Uses of DatabaseFunction in liquibase.change
Methods in liquibase.change that return DatabaseFunction Modifier and Type Method Description DatabaseFunctionColumnConfig. getDefaultValueComputed()Return the function whose value should generate this column's default.DatabaseFunctionColumnConfig. getValueComputed()Return the function this column should be set from.Methods in liquibase.change with parameters of type DatabaseFunction Modifier and Type Method Description ColumnConfigColumnConfig. setDefaultValueComputed(DatabaseFunction defaultValueComputed)ColumnConfigColumnConfig. setValueComputed(DatabaseFunction valueComputed) -
Uses of DatabaseFunction in liquibase.change.core
Methods in liquibase.change.core that return DatabaseFunction Modifier and Type Method Description DatabaseFunctionAddDefaultValueChange. getDefaultValueComputed()Methods in liquibase.change.core with parameters of type DatabaseFunction Modifier and Type Method Description voidAddDefaultValueChange. setDefaultValueComputed(DatabaseFunction defaultValueComputed) -
Uses of DatabaseFunction in liquibase.database
Fields in liquibase.database with type parameters of type DatabaseFunction Modifier and Type Field Description protected List<DatabaseFunction>AbstractJdbcDatabase. dateFunctionsMethods in liquibase.database that return types with arguments of type DatabaseFunction Modifier and Type Method Description List<DatabaseFunction>AbstractJdbcDatabase. getDateFunctions()List<DatabaseFunction>Database. getDateFunctions()Returns list of database native date functionsMethods in liquibase.database with parameters of type DatabaseFunction Modifier and Type Method Description StringAbstractJdbcDatabase. generateDatabaseFunctionValue(DatabaseFunction databaseFunction)StringDatabase. generateDatabaseFunctionValue(DatabaseFunction databaseFunction)Some function names are placeholders that need to be replaced with the specific database value. -
Uses of DatabaseFunction in liquibase.database.core
Methods in liquibase.database.core that return types with arguments of type DatabaseFunction Modifier and Type Method Description List<DatabaseFunction>MockDatabase. getDateFunctions()Methods in liquibase.database.core with parameters of type DatabaseFunction Modifier and Type Method Description StringMockDatabase. generateDatabaseFunctionValue(DatabaseFunction databaseFunction)StringMySQLDatabase. generateDatabaseFunctionValue(DatabaseFunction databaseFunction)StringOracleDatabase. generateDatabaseFunctionValue(DatabaseFunction databaseFunction) -
Uses of DatabaseFunction in liquibase.datatype
Methods in liquibase.datatype with parameters of type DatabaseFunction Modifier and Type Method Description protected StringLiquibaseDataType. functionToSql(DatabaseFunction function, Database database) -
Uses of DatabaseFunction in liquibase.statement
Subclasses of DatabaseFunction in liquibase.statement Modifier and Type Class Description classSequenceCurrentValueFunctionRepresents a function for getting the current value from a sequenceclassSequenceNextValueFunctionRepresents a function for getting the next value from a sequence
-