Uses of Class
liquibase.nosql.statement.AbstractNoSqlStatement
-
Packages that use AbstractNoSqlStatement Package Description liquibase.ext.mongodb.changelog liquibase.ext.mongodb.lockservice liquibase.ext.mongodb.statement liquibase.nosql.executor -
-
Uses of AbstractNoSqlStatement in liquibase.ext.mongodb.changelog
Subclasses of AbstractNoSqlStatement in liquibase.ext.mongodb.changelog Modifier and Type Class Description classAdjustChangeLogCollectionStatementclassCreateChangeLogCollectionStatementclassGetMaxChangeSetSequenceStatement -
Uses of AbstractNoSqlStatement in liquibase.ext.mongodb.lockservice
Subclasses of AbstractNoSqlStatement in liquibase.ext.mongodb.lockservice Modifier and Type Class Description classAdjustChangeLogLockCollectionStatementclassCreateChangeLogLockCollectionStatementclassReplaceChangeLogLockStatementclassSelectChangeLogLockStatement -
Uses of AbstractNoSqlStatement in liquibase.ext.mongodb.statement
Subclasses of AbstractNoSqlStatement in liquibase.ext.mongodb.statement Modifier and Type Class Description classAbstractCollectionStatementclassAbstractMongoStatementclassAbstractRunCommandStatementclassAdminCommandStatementclassCountCollectionByNameStatementQueries the database for the number of collections that match the supplied collectionName i.e returns 1 if the collection is present; else 0classCountDocumentsInCollectionStatementclassCreateCollectionStatementCreates a collection via the database runCommand method For a list of supported options see the reference page: https://docs.mongodb.com/manual/reference/command/create/#createclassCreateIndexStatementCreates an index via the database runCommand method For a list of supported options see the reference page:classDeleteManyStatementclassDropAllCollectionsStatementclassDropCollectionStatementDrops a collection via the database runCommand method For a list of supported options see the reference page:classDropIndexStatementDrops an index via the database runCommand method For a list of supported options see the reference page:classFindAllStatementclassFindOneAndUpdateStatementFinds and updates a single document via the database runCommand method NOTE: This does not return the original document, instead returns 1 if a document was updated, else 0classInsertManyStatementInserts many documents via the database runCommand method For a list of supported options see the reference page:classInsertOneStatementInserts a document via the database runCommand method For a list of supported options see the reference page:classListCollectionNamesStatementGets a list of collection names via the database runCommand method For a list of supported options see the reference page:classRunCommandStatementclassUpdateManyStatement -
Uses of AbstractNoSqlStatement in liquibase.nosql.executor
Methods in liquibase.nosql.executor with parameters of type AbstractNoSqlStatement Modifier and Type Method Description liquibase.sql.Sql[]NoSqlGenerator. generateSql(AbstractNoSqlStatement statement, liquibase.database.Database database, liquibase.sqlgenerator.SqlGeneratorChain<AbstractNoSqlStatement> sqlGeneratorChain)liquibase.exception.ValidationErrorsNoSqlGenerator. validate(AbstractNoSqlStatement statement, liquibase.database.Database database, liquibase.sqlgenerator.SqlGeneratorChain<AbstractNoSqlStatement> sqlGeneratorChain)Method parameters in liquibase.nosql.executor with type arguments of type AbstractNoSqlStatement Modifier and Type Method Description liquibase.sql.Sql[]NoSqlGenerator. generateSql(AbstractNoSqlStatement statement, liquibase.database.Database database, liquibase.sqlgenerator.SqlGeneratorChain<AbstractNoSqlStatement> sqlGeneratorChain)liquibase.exception.ValidationErrorsNoSqlGenerator. validate(AbstractNoSqlStatement statement, liquibase.database.Database database, liquibase.sqlgenerator.SqlGeneratorChain<AbstractNoSqlStatement> sqlGeneratorChain)
-