All Downloads are FREE. Search and download functionalities are using the official Maven repository.

liquibase.database.ObjectQuotingStrategy Maven / Gradle / Ivy

There is a newer version: 4.29.2
Show newest version
package liquibase.database;

/**
 * Strategy regards quoting object names e.g. table, column, index names etc.
 */
public enum ObjectQuotingStrategy {
    LEGACY, // same behavior as in liquibase 2.0, currently only postgresql has quoting handling
    QUOTE_ALL_OBJECTS, // every object gets quoted e.g. person becomes "person"
    QUOTE_ONLY_RESERVED_WORDS // quote reserved keywords and invalid column names

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy