CockroachDBSchema.java
/*-
* ========================LICENSE_START=================================
* flyway-database-postgresql
* ========================================================================
* Copyright (C) 2010 - 2026 Red Gate Software Ltd
* ========================================================================
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* =========================LICENSE_END==================================
*/
package org.flywaydb.database.cockroachdb;
import org.flywaydb.core.internal.database.base.Schema;
import org.flywaydb.core.internal.database.base.Table;
import org.flywaydb.core.internal.jdbc.JdbcTemplate;
import org.flywaydb.core.internal.util.SqlCallable;
import java.sql.SQLException;
import java.util.ArrayList;
import java.util.List;
public class CockroachDBSchema extends Schema<CockroachDBDatabase, CockroachDBTable> {
/**
* Is this CockroachDB 1.x.
*/
final boolean cockroachDB1;
final boolean hasSchemaSupport;
public CockroachDBSchema(final JdbcTemplate jdbcTemplate, final CockroachDBDatabase database, final String name) {
super(jdbcTemplate, database, name);
cockroachDB1 = !database.getVersion().isAtLeast("2");
hasSchemaSupport = database.supportsSchemas();
}
@Override
protected boolean doExists() throws SQLException {
return new CockroachDBRetryingStrategy().execute(this::doExistsOnce);
}
private boolean doExistsOnce() throws SQLException {
if (hasSchemaSupport) {
return jdbcTemplate.queryForBoolean(
"SELECT EXISTS ( SELECT 1 FROM information_schema.schemata WHERE schema_name=? )",
name);
}
return jdbcTemplate.queryForBoolean("SELECT EXISTS ( SELECT 1 FROM pg_database WHERE datname=? )", name);
}
@Override
protected boolean doEmpty() throws SQLException {
return new CockroachDBRetryingStrategy().execute(this::doEmptyOnce);
}
private boolean doEmptyOnce() throws SQLException {
if (cockroachDB1) {
return !jdbcTemplate.queryForBoolean("SELECT EXISTS ("
+ " SELECT 1"
+ " FROM information_schema.tables"
+ " WHERE table_schema=?"
+ " AND table_type='BASE TABLE'"
+ ")", name);
} else if (!hasSchemaSupport) {
return !jdbcTemplate.queryForBoolean("SELECT EXISTS ("
+ " SELECT 1"
+ " FROM information_schema.tables "
+ " WHERE table_catalog=?"
+ " AND table_schema='public'"
+ " AND table_type='BASE TABLE'"
+ " UNION ALL"
+ " SELECT 1"
+ " FROM information_schema.sequences "
+ " WHERE sequence_catalog=?"
+ " AND sequence_schema='public'"
+ ")", name, name);
} else {
return !jdbcTemplate.queryForBoolean("SELECT EXISTS ("
+ " SELECT 1"
+ " FROM information_schema.tables "
+ " WHERE table_schema=?"
+ " AND table_type='BASE TABLE'"
+ " UNION ALL"
+ " SELECT 1"
+ " FROM information_schema.sequences "
+ " WHERE sequence_schema=?"
+ ")", name, name);
}
}
@Override
protected void doCreate() throws SQLException {
new CockroachDBRetryingStrategy().execute((SqlCallable<Integer>) () -> {
doCreateOnce();
return null;
});
}
protected void doCreateOnce() throws SQLException {
if (hasSchemaSupport) {
jdbcTemplate.execute("CREATE SCHEMA IF NOT EXISTS " + database.quote(name));
} else {
jdbcTemplate.execute("CREATE DATABASE IF NOT EXISTS " + database.quote(name));
}
}
@Override
protected void doDrop() throws SQLException {
new CockroachDBRetryingStrategy().execute((SqlCallable<Integer>) () -> {
doDropOnce();
return null;
});
}
protected void doDropOnce() throws SQLException {
if (hasSchemaSupport) {
jdbcTemplate.execute("DROP SCHEMA IF EXISTS " + database.quote(name) + " CASCADE");
} else {
jdbcTemplate.execute("DROP DATABASE IF EXISTS " + database.quote(name));
}
}
@Override
protected void doClean() throws SQLException {
new CockroachDBRetryingStrategy().execute((SqlCallable<Integer>) () -> {
doCleanOnce();
return null;
});
}
protected void doCleanOnce() throws SQLException {
for (final String statement : generateDropStatementsForViews()) {
jdbcTemplate.execute(statement);
}
for (final Table table : allTables()) {
table.drop();
}
for (final String statement : generateDropStatementsForSequences()) {
jdbcTemplate.execute(statement);
}
}
private List<String> generateDropStatementsForViews() throws SQLException {
final List<String> names = hasSchemaSupport
? jdbcTemplate.queryForStringList("SELECT table_name FROM information_schema.views"
+ " WHERE table_schema=?",
name)
: jdbcTemplate.queryForStringList("SELECT table_name FROM information_schema.views"
+ " WHERE table_catalog=? AND table_schema='public'", name);
final List<String> statements = new ArrayList<>();
for (final String name : names) {
statements.add("DROP VIEW IF EXISTS " + database.quote(this.name, name) + " CASCADE");
}
return statements;
}
private List<String> generateDropStatementsForSequences() throws SQLException {
final List<String> names = hasSchemaSupport
? jdbcTemplate.queryForStringList("SELECT sequence_name FROM information_schema.sequences"
+ " WHERE sequence_schema=?",
name)
: jdbcTemplate.queryForStringList("SELECT sequence_name FROM information_schema.sequences"
+ " WHERE sequence_catalog=? AND sequence_schema='public'", name);
final List<String> statements = new ArrayList<>();
for (final String name : names) {
statements.add("DROP SEQUENCE IF EXISTS " + database.quote(this.name, name) + " CASCADE");
}
return statements;
}
@Override
protected CockroachDBTable[] doAllTables() throws SQLException {
String query;
if (cockroachDB1 || hasSchemaSupport) {
query =
//Search for all the table names
"SELECT table_name FROM information_schema.tables" +
//in this schema
" WHERE table_schema=?" +
//that are real tables (as opposed to views)
" AND table_type='BASE TABLE'";
} else {
query =
//Search for all the table names
"SELECT table_name FROM information_schema.tables" +
//in this database
" WHERE table_catalog=?" + " AND table_schema='public'" +
//that are real tables (as opposed to views)
" AND table_type='BASE TABLE'";
}
final List<String> tableNames = jdbcTemplate.queryForStringList(query, name);
//Views and child tables are excluded as they are dropped with the parent table when using cascade.
final CockroachDBTable[] tables = new CockroachDBTable[tableNames.size()];
for (int i = 0; i < tableNames.size(); i++) {
tables[i] = new CockroachDBTable(jdbcTemplate, database, this, tableNames.get(i));
}
return tables;
}
@Override
public Table getTable(final String tableName) {
return new CockroachDBTable(jdbcTemplate, database, this, tableName);
}
}