diff --git a/sharding-jdbc-core/src/test/java/com/dangdang/ddframe/rdb/integrate/db/pstatement/ShardingDatabaseOnlyForPreparedStatementWithSelectTest.java b/sharding-jdbc-core/src/test/java/com/dangdang/ddframe/rdb/integrate/db/pstatement/ShardingDatabaseOnlyForPreparedStatementWithSelectTest.java index 8026b298ec271f001c78be9fab7e33e114e1fe3d..56b93c6e418d2f32ed9deca05c21435e20275678 100644 --- a/sharding-jdbc-core/src/test/java/com/dangdang/ddframe/rdb/integrate/db/pstatement/ShardingDatabaseOnlyForPreparedStatementWithSelectTest.java +++ b/sharding-jdbc-core/src/test/java/com/dangdang/ddframe/rdb/integrate/db/pstatement/ShardingDatabaseOnlyForPreparedStatementWithSelectTest.java @@ -58,8 +58,7 @@ public class ShardingDatabaseOnlyForPreparedStatementWithSelectTest extends Abst @Test public void assertSelectLimitWithBindingTable() throws SQLException, DatabaseUnitException { - String expectedDataSetFile = PostgreSQL.name().equalsIgnoreCase(currentDbType()) ? "integrate/dataset/db/expect/select/postgresql/SelectLimitWithBindingTable.xml" - : "integrate/dataset/db/expect/select/SelectLimitWithBindingTable.xml"; + String expectedDataSetFile = "integrate/dataset/db/expect/select/SelectLimitWithBindingTable.xml"; if (PostgreSQL.name().equalsIgnoreCase(currentDbType())) { assertDataSet(expectedDataSetFile, getShardingDataSource().getConnection(), "t_order_item", replacePreparedStatement(getDatabaseTestSQL().getSelectLimitWithBindingTableSql()), 10, 19, 1000, 1909, 1.5, 2.4); @@ -73,8 +72,7 @@ public class ShardingDatabaseOnlyForPreparedStatementWithSelectTest extends Abst @Test public void assertSelectOrderByWithAlias() throws SQLException, DatabaseUnitException { - String expectedDataSetFile = PostgreSQL.name().equalsIgnoreCase(currentDbType()) ? "integrate/dataset/db/expect/select/postgresql/SelectOrderByWithAlias.xml" - : "integrate/dataset/db/expect/select/SelectOrderByWithAlias.xml"; + String expectedDataSetFile = "integrate/dataset/db/expect/select/SelectOrderByWithAlias.xml"; assertDataSet(expectedDataSetFile, getShardingDataSource().getConnection(), "t_order", replacePreparedStatement(getDatabaseTestSQL().getSelectOrderByWithAliasSql()), 10, 12, 1001, 1200); assertDataSet("integrate/dataset/Empty.xml", getShardingDataSource().getConnection(), @@ -83,8 +81,7 @@ public class ShardingDatabaseOnlyForPreparedStatementWithSelectTest extends Abst @Test public void assertSelectLimitWithBindingTableWithoutOffset() throws SQLException, DatabaseUnitException { - String expectedDataSetFile = PostgreSQL.name().equalsIgnoreCase(currentDbType()) ? "integrate/dataset/db/expect/select/postgresql/SelectLimitWithBindingTableWithoutOffset.xml" - : "integrate/dataset/db/expect/select/SelectLimitWithBindingTableWithoutOffset.xml"; + String expectedDataSetFile = "integrate/dataset/db/expect/select/SelectLimitWithBindingTableWithoutOffset.xml"; assertDataSet(expectedDataSetFile, getShardingDataSource().getConnection(), "t_order_item", replacePreparedStatement(getDatabaseTestSQL().getSelectLimitWithBindingTableWithoutOffsetSql()), 10, 19, 1000, 1909, 2); assertDataSet("integrate/dataset/Empty.xml", getShardingDataSource().getConnection(), "t_order_item", @@ -101,8 +98,7 @@ public class ShardingDatabaseOnlyForPreparedStatementWithSelectTest extends Abst @Test public void assertSelectGroupByWithoutGroupedColumn() throws SQLException, DatabaseUnitException { - String expectedDataSetFile = PostgreSQL.name().equalsIgnoreCase(currentDbType()) ? "integrate/dataset/db/expect/select/postgresql/SelectGroupByWithoutGroupedColumn.xml" - : "integrate/dataset/db/expect/select/SelectGroupByWithoutGroupedColumn.xml"; + String expectedDataSetFile = "integrate/dataset/db/expect/select/SelectGroupByWithoutGroupedColumn.xml"; assertDataSet(expectedDataSetFile, getShardingDataSource().getConnection(), "t_order_item", replacePreparedStatement(getDatabaseTestSQL().getSelectGroupWithoutGroupedColumnSql()), 10, 19, 1000, 1909); assertDataSet("integrate/dataset/Empty.xml", getShardingDataSource().getConnection(), @@ -111,8 +107,7 @@ public class ShardingDatabaseOnlyForPreparedStatementWithSelectTest extends Abst @Test public void assertSelectNoShardingTable() throws SQLException, DatabaseUnitException { - String expectedDataSetFile = PostgreSQL.name().equalsIgnoreCase(currentDbType()) ? "integrate/dataset/db/expect/select/postgresql/SelectNoShardingTable.xml" - : "integrate/dataset/db/expect/select/SelectNoShardingTable.xml"; + String expectedDataSetFile = "integrate/dataset/db/expect/select/SelectNoShardingTable.xml"; assertDataSet(expectedDataSetFile, getShardingDataSource().getConnection(), "t_order_item", getDatabaseTestSQL().getSelectWithNoShardingTableSql()); } diff --git a/sharding-jdbc-core/src/test/java/com/dangdang/ddframe/rdb/integrate/db/statement/ShardingDatabaseOnlyForStatementWithSelectTest.java b/sharding-jdbc-core/src/test/java/com/dangdang/ddframe/rdb/integrate/db/statement/ShardingDatabaseOnlyForStatementWithSelectTest.java index 8c836602c2babf4ce6ece0d599d48b3c6a6b2c18..8612ac4a9732a85420bd5ff5edab6dac2047cc1a 100644 --- a/sharding-jdbc-core/src/test/java/com/dangdang/ddframe/rdb/integrate/db/statement/ShardingDatabaseOnlyForStatementWithSelectTest.java +++ b/sharding-jdbc-core/src/test/java/com/dangdang/ddframe/rdb/integrate/db/statement/ShardingDatabaseOnlyForStatementWithSelectTest.java @@ -23,8 +23,6 @@ import org.junit.Test; import java.sql.SQLException; -import static com.dangdang.ddframe.rdb.sharding.constant.DatabaseType.PostgreSQL; - public final class ShardingDatabaseOnlyForStatementWithSelectTest extends AbstractShardingDatabaseOnlyDBUnitTest { @Test @@ -57,8 +55,7 @@ public final class ShardingDatabaseOnlyForStatementWithSelectTest extends Abstra @Test public void assertSelectLimitWithBindingTable() throws SQLException, DatabaseUnitException { - String expectedDataSetFile = PostgreSQL.name().equalsIgnoreCase(currentDbType()) ? "integrate/dataset/db/expect/select/postgresql/SelectLimitWithBindingTable.xml" - : "integrate/dataset/db/expect/select/SelectLimitWithBindingTable.xml"; + String expectedDataSetFile = "integrate/dataset/db/expect/select/SelectLimitWithBindingTable.xml"; assertDataSet(expectedDataSetFile, getShardingDataSource().getConnection(), "t_order_item", String.format(getDatabaseTestSQL().getSelectLimitWithBindingTableSql(), 10, 19, 1000, 1909, 2, 2)); assertDataSet("integrate/dataset/Empty.xml", getShardingDataSource().getConnection(), @@ -67,8 +64,7 @@ public final class ShardingDatabaseOnlyForStatementWithSelectTest extends Abstra @Test public void assertSelectOrderByWithAlias() throws SQLException, DatabaseUnitException { - String expectedDataSetFile = PostgreSQL.name().equalsIgnoreCase(currentDbType()) ? "integrate/dataset/db/expect/select/postgresql/SelectOrderByWithAlias.xml" - : "integrate/dataset/db/expect/select/SelectOrderByWithAlias.xml"; + String expectedDataSetFile = "integrate/dataset/db/expect/select/SelectOrderByWithAlias.xml"; assertDataSet(expectedDataSetFile, getShardingDataSource().getConnection(), "t_order", String.format(getDatabaseTestSQL().getSelectOrderByWithAliasSql(), 10, 12, 1001, 1200)); assertDataSet("integrate/dataset/Empty.xml", getShardingDataSource().getConnection(), @@ -77,8 +73,7 @@ public final class ShardingDatabaseOnlyForStatementWithSelectTest extends Abstra @Test public void assertSelectLimitWithBindingTableWithoutOffset() throws SQLException, DatabaseUnitException { - String expectedDataSetFile = PostgreSQL.name().equalsIgnoreCase(currentDbType()) ? "integrate/dataset/db/expect/select/postgresql/SelectLimitWithBindingTableWithoutOffset.xml" - : "integrate/dataset/db/expect/select/SelectLimitWithBindingTableWithoutOffset.xml"; + String expectedDataSetFile = "integrate/dataset/db/expect/select/SelectLimitWithBindingTableWithoutOffset.xml"; assertDataSet(expectedDataSetFile, getShardingDataSource().getConnection(), "t_order_item", String.format(getDatabaseTestSQL().getSelectLimitWithBindingTableWithoutOffsetSql(), 10, 19, 1000, 1909, 2)); assertDataSet("integrate/dataset/Empty.xml", getShardingDataSource().getConnection(), "t_order_item", @@ -95,8 +90,7 @@ public final class ShardingDatabaseOnlyForStatementWithSelectTest extends Abstra @Test public void assertSelectGroupByWithoutGroupedColumn() throws SQLException, DatabaseUnitException { - String expectedDataSetFile = PostgreSQL.name().equalsIgnoreCase(currentDbType()) ? "integrate/dataset/db/expect/select/postgresql/SelectGroupByWithoutGroupedColumn.xml" - : "integrate/dataset/db/expect/select/SelectGroupByWithoutGroupedColumn.xml"; + String expectedDataSetFile = "integrate/dataset/db/expect/select/SelectGroupByWithoutGroupedColumn.xml"; assertDataSet(expectedDataSetFile, getShardingDataSource().getConnection(), "t_order_item", String.format(getDatabaseTestSQL().getSelectGroupWithoutGroupedColumnSql(), 10, 19, 1000, 1909)); assertDataSet("integrate/dataset/Empty.xml", getShardingDataSource().getConnection(), @@ -105,8 +99,7 @@ public final class ShardingDatabaseOnlyForStatementWithSelectTest extends Abstra @Test public void assertSelectNoShardingTable() throws SQLException, DatabaseUnitException { - String expectedDataSetFile = PostgreSQL.name().equalsIgnoreCase(currentDbType()) ? "integrate/dataset/db/expect/select/postgresql/SelectNoShardingTable.xml" - : "integrate/dataset/db/expect/select/SelectNoShardingTable.xml"; + String expectedDataSetFile = "integrate/dataset/db/expect/select/SelectNoShardingTable.xml"; assertDataSet(expectedDataSetFile, getShardingDataSource().getConnection(), "t_order_item", getDatabaseTestSQL().getSelectWithNoShardingTableSql()); } } diff --git a/sharding-jdbc-core/src/test/java/com/dangdang/ddframe/rdb/integrate/tbl/pstatement/ShardingTablesOnlyForPreparedStatementWithSelectTest.java b/sharding-jdbc-core/src/test/java/com/dangdang/ddframe/rdb/integrate/tbl/pstatement/ShardingTablesOnlyForPreparedStatementWithSelectTest.java index d71b72a0af2f659aa743b859b097eb3b96b51de0..5696d40f090e37b6b329785244e8b84ba5e67002 100644 --- a/sharding-jdbc-core/src/test/java/com/dangdang/ddframe/rdb/integrate/tbl/pstatement/ShardingTablesOnlyForPreparedStatementWithSelectTest.java +++ b/sharding-jdbc-core/src/test/java/com/dangdang/ddframe/rdb/integrate/tbl/pstatement/ShardingTablesOnlyForPreparedStatementWithSelectTest.java @@ -81,7 +81,7 @@ public final class ShardingTablesOnlyForPreparedStatementWithSelectTest extends return; } if (PostgreSQL.name().equalsIgnoreCase(currentDbType())) { - String expectedDataSetFile = TABLE_ONLY_PREFIX + "/expect/select/postgresql/SelectLimitWithBindingTable.xml"; + String expectedDataSetFile = TABLE_ONLY_PREFIX + "/expect/select/SelectLimitWithBindingTable.xml"; assertDataSet(expectedDataSetFile, getShardingDataSource().getConnection(), "t_order_item", replacePreparedStatement(getDatabaseTestSQL().getSelectLimitWithBindingTableSql()), 10, 19, 1000, 1909, 1.5, 2.4); } else if (Oracle.name().equalsIgnoreCase(currentDbType())) { @@ -100,8 +100,7 @@ public final class ShardingTablesOnlyForPreparedStatementWithSelectTest extends @Test public void assertSelectLimitWithBindingTableWithRowCount() throws SQLException, DatabaseUnitException { if (!Oracle.name().equalsIgnoreCase(currentDbType()) && !SQLServer.name().equalsIgnoreCase(currentDbType())) { - String expectedDataSetFile = PostgreSQL.name().equalsIgnoreCase(currentDbType()) ? TABLE_ONLY_PREFIX + "/expect/select/postgresql/SelectLimitWithBindingTableWithoutOffset.xml" - : TABLE_ONLY_PREFIX + "/expect/select/SelectLimitWithBindingTableWithoutOffset.xml"; + String expectedDataSetFile = TABLE_ONLY_PREFIX + "/expect/select/SelectLimitWithBindingTableWithoutOffset.xml"; assertDataSet(expectedDataSetFile, getShardingDataSource().getConnection(), "t_order_item", replacePreparedStatement(getDatabaseTestSQL().getSelectLimitWithBindingTableWithoutOffsetSql()), 10, 19, 1000, 1909, 2); assertDataSet("integrate/dataset/Empty.xml", getShardingDataSource().getConnection(), "t_order_item", @@ -130,9 +129,7 @@ public final class ShardingTablesOnlyForPreparedStatementWithSelectTest extends @Test public void assertSelectGroupByWithoutGroupedColumn() throws SQLException, DatabaseUnitException { - String expectedDataSetFile = PostgreSQL.name().equalsIgnoreCase(currentDbType()) || Oracle.name().equalsIgnoreCase(currentDbType()) || SQLServer.name().equalsIgnoreCase(currentDbType()) - ? TABLE_ONLY_PREFIX + "/expect/select/postgresql/SelectGroupByWithoutGroupedColumn.xml" - : TABLE_ONLY_PREFIX + "/expect/select/SelectGroupByWithoutGroupedColumn.xml"; + String expectedDataSetFile = TABLE_ONLY_PREFIX + "/expect/select/SelectGroupByWithoutGroupedColumn.xml"; assertDataSet(expectedDataSetFile, getShardingDataSource().getConnection(), "t_order_item", replacePreparedStatement(getDatabaseTestSQL().getSelectGroupWithoutGroupedColumnSql()), 10, 11, 1000, 1109); assertDataSet("integrate/dataset/Empty.xml", getShardingDataSource().getConnection(), @@ -141,18 +138,14 @@ public final class ShardingTablesOnlyForPreparedStatementWithSelectTest extends @Test public void assertSelectNoShardingTable() throws SQLException, DatabaseUnitException { - String expectedDataSetFile = PostgreSQL.name().equalsIgnoreCase(currentDbType()) || Oracle.name().equalsIgnoreCase(currentDbType()) || SQLServer.name().equalsIgnoreCase(currentDbType()) - ? TABLE_ONLY_PREFIX + "/expect/select/postgresql/SelectNoShardingTable.xml" - : TABLE_ONLY_PREFIX + "/expect/select/SelectNoShardingTable.xml"; + String expectedDataSetFile = TABLE_ONLY_PREFIX + "/expect/select/SelectNoShardingTable.xml"; assertDataSet(expectedDataSetFile, getShardingDataSource().getConnection(), "t_order_item", getDatabaseTestSQL().getSelectWithNoShardingTableSql()); } @Test public void assertSelectWithBindingTableAndConfigTable() throws SQLException, DatabaseUnitException { - String expectedDataSetFile = PostgreSQL.name().equalsIgnoreCase(currentDbType()) || Oracle.name().equalsIgnoreCase(currentDbType()) || SQLServer.name().equalsIgnoreCase(currentDbType()) - ? TABLE_ONLY_PREFIX + "/expect/select/postgresql/SelectWithBindingTableAndConfigTable.xml" - : TABLE_ONLY_PREFIX + "/expect/select/SelectWithBindingTableAndConfigTable.xml"; + String expectedDataSetFile = TABLE_ONLY_PREFIX + "/expect/select/SelectWithBindingTableAndConfigTable.xml"; assertDataSet(expectedDataSetFile, shardingDataSource.getConnection(), "t_order_item", replacePreparedStatement(getDatabaseTestSQL().getSelectGroupWithBindingTableAndConfigSql()), 10, 11, 1009, 1108, "init"); assertDataSet("integrate/dataset/Empty.xml", shardingDataSource.getConnection(), diff --git a/sharding-jdbc-core/src/test/java/com/dangdang/ddframe/rdb/integrate/tbl/statement/ShardingTablesOnlyForStatementWithSelectTest.java b/sharding-jdbc-core/src/test/java/com/dangdang/ddframe/rdb/integrate/tbl/statement/ShardingTablesOnlyForStatementWithSelectTest.java index a404f95086c6d78c2fecf865c5230b3a178efbc5..caf006a6b7f5cf1405b1383652f64613c49392c4 100644 --- a/sharding-jdbc-core/src/test/java/com/dangdang/ddframe/rdb/integrate/tbl/statement/ShardingTablesOnlyForStatementWithSelectTest.java +++ b/sharding-jdbc-core/src/test/java/com/dangdang/ddframe/rdb/integrate/tbl/statement/ShardingTablesOnlyForStatementWithSelectTest.java @@ -26,7 +26,6 @@ import org.junit.Test; import java.sql.SQLException; import static com.dangdang.ddframe.rdb.sharding.constant.DatabaseType.Oracle; -import static com.dangdang.ddframe.rdb.sharding.constant.DatabaseType.PostgreSQL; import static com.dangdang.ddframe.rdb.sharding.constant.DatabaseType.SQLServer; public final class ShardingTablesOnlyForStatementWithSelectTest extends AbstractShardingTablesOnlyDBUnitTest { @@ -68,8 +67,7 @@ public final class ShardingTablesOnlyForStatementWithSelectTest extends Abstract @Test public void assertSelectLimitWithBindingTable() throws SQLException, DatabaseUnitException { if (!Oracle.name().equalsIgnoreCase(currentDbType()) && !SQLServer.name().equalsIgnoreCase(currentDbType())) { - String expectedDataSetFile = PostgreSQL.name().equalsIgnoreCase(currentDbType()) ? "integrate/dataset/tbl/expect/select/postgresql/SelectLimitWithBindingTable.xml" - : "integrate/dataset/tbl/expect/select/SelectLimitWithBindingTable.xml"; + String expectedDataSetFile = "integrate/dataset/tbl/expect/select/SelectLimitWithBindingTable.xml"; assertDataSet(expectedDataSetFile, shardingDataSource.getConnection(), "t_order_item", String.format(getDatabaseTestSQL().getSelectLimitWithBindingTableSql(), 10, 19, 1000, 1909, 2, 2)); assertDataSet("integrate/dataset/Empty.xml", shardingDataSource.getConnection(), @@ -87,9 +85,7 @@ public final class ShardingTablesOnlyForStatementWithSelectTest extends Abstract @Test public void assertSelectGroupByWithoutGroupedColumn() throws SQLException, DatabaseUnitException { - String expectedDataSetFile = PostgreSQL.name().equalsIgnoreCase(currentDbType()) || Oracle.name().equalsIgnoreCase(currentDbType()) || SQLServer.name().equalsIgnoreCase(currentDbType()) - ? "integrate/dataset/tbl/expect/select/postgresql/SelectGroupByWithoutGroupedColumn.xml" - : "integrate/dataset/tbl/expect/select/SelectGroupByWithoutGroupedColumn.xml"; + String expectedDataSetFile = "integrate/dataset/tbl/expect/select/SelectGroupByWithoutGroupedColumn.xml"; assertDataSet(expectedDataSetFile, shardingDataSource.getConnection(), "t_order_item", String.format(getDatabaseTestSQL().getSelectGroupWithoutGroupedColumnSql(), 10, 11, 1000, 1109)); assertDataSet("integrate/dataset/Empty.xml", shardingDataSource.getConnection(), @@ -98,9 +94,7 @@ public final class ShardingTablesOnlyForStatementWithSelectTest extends Abstract @Test public void assertSelectWithBindingTableAndConfigTable() throws SQLException, DatabaseUnitException { - String expectedDataSetFile = PostgreSQL.name().equalsIgnoreCase(currentDbType()) || Oracle.name().equalsIgnoreCase(currentDbType()) || SQLServer.name().equalsIgnoreCase(currentDbType()) - ? "integrate/dataset/tbl/expect/select/postgresql/SelectWithBindingTableAndConfigTable.xml" - : "integrate/dataset/tbl/expect/select/SelectWithBindingTableAndConfigTable.xml"; + String expectedDataSetFile = "integrate/dataset/tbl/expect/select/SelectWithBindingTableAndConfigTable.xml"; assertDataSet(expectedDataSetFile, shardingDataSource.getConnection(), "t_order_item", String.format(getDatabaseTestSQL().getSelectGroupWithBindingTableAndConfigSql(), 10, 11, 1009, 1108, "'init'")); assertDataSet("integrate/dataset/Empty.xml", shardingDataSource.getConnection(), diff --git a/sharding-jdbc-core/src/test/resources/integrate/dataset/db/expect/select/postgresql/SelectGroupByWithoutGroupedColumn.xml b/sharding-jdbc-core/src/test/resources/integrate/dataset/db/expect/select/postgresql/SelectGroupByWithoutGroupedColumn.xml deleted file mode 100644 index 9fdd0c3e43bc818ecc5978426fbe66b652408d12..0000000000000000000000000000000000000000 --- a/sharding-jdbc-core/src/test/resources/integrate/dataset/db/expect/select/postgresql/SelectGroupByWithoutGroupedColumn.xml +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/sharding-jdbc-core/src/test/resources/integrate/dataset/db/expect/select/postgresql/SelectLimitWithBindingTable.xml b/sharding-jdbc-core/src/test/resources/integrate/dataset/db/expect/select/postgresql/SelectLimitWithBindingTable.xml deleted file mode 100644 index 717c02bf7759a72c47c61f8565f6cef91c8b8e6e..0000000000000000000000000000000000000000 --- a/sharding-jdbc-core/src/test/resources/integrate/dataset/db/expect/select/postgresql/SelectLimitWithBindingTable.xml +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/sharding-jdbc-core/src/test/resources/integrate/dataset/db/expect/select/postgresql/SelectLimitWithBindingTableWithoutOffset.xml b/sharding-jdbc-core/src/test/resources/integrate/dataset/db/expect/select/postgresql/SelectLimitWithBindingTableWithoutOffset.xml deleted file mode 100644 index cd1dc541a15fc1b32f3b070b2d5954d181d69114..0000000000000000000000000000000000000000 --- a/sharding-jdbc-core/src/test/resources/integrate/dataset/db/expect/select/postgresql/SelectLimitWithBindingTableWithoutOffset.xml +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/sharding-jdbc-core/src/test/resources/integrate/dataset/db/expect/select/postgresql/SelectNoShardingTable.xml b/sharding-jdbc-core/src/test/resources/integrate/dataset/db/expect/select/postgresql/SelectNoShardingTable.xml deleted file mode 100644 index f641cdab553b983f4c6197af3eecabf6cb7a3363..0000000000000000000000000000000000000000 --- a/sharding-jdbc-core/src/test/resources/integrate/dataset/db/expect/select/postgresql/SelectNoShardingTable.xml +++ /dev/null @@ -1,82 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sharding-jdbc-core/src/test/resources/integrate/dataset/db/expect/select/postgresql/SelectOrderByWithAlias.xml b/sharding-jdbc-core/src/test/resources/integrate/dataset/db/expect/select/postgresql/SelectOrderByWithAlias.xml deleted file mode 100644 index 99f53ca55bd204cc3ab915a761a7f5bbf1bf0936..0000000000000000000000000000000000000000 --- a/sharding-jdbc-core/src/test/resources/integrate/dataset/db/expect/select/postgresql/SelectOrderByWithAlias.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/sharding-jdbc-core/src/test/resources/integrate/dataset/tbl/expect/select/SelectLimitWithBindingTable.xml b/sharding-jdbc-core/src/test/resources/integrate/dataset/tbl/expect/select/SelectLimitWithBindingTable.xml index 2d6a953ab6d66634ec4179fb65329d331ac52396..2f1fbfad847cfea6611f6cae8e225fd3792b7555 100644 --- a/sharding-jdbc-core/src/test/resources/integrate/dataset/tbl/expect/select/SelectLimitWithBindingTable.xml +++ b/sharding-jdbc-core/src/test/resources/integrate/dataset/tbl/expect/select/SelectLimitWithBindingTable.xml @@ -1,20 +1,3 @@ - - diff --git a/sharding-jdbc-core/src/test/resources/integrate/dataset/tbl/expect/select/postgresql/SelectGroupByWithoutGroupedColumn.xml b/sharding-jdbc-core/src/test/resources/integrate/dataset/tbl/expect/select/postgresql/SelectGroupByWithoutGroupedColumn.xml deleted file mode 100644 index 2ace6b839c5ba5e1c6df5e14710d741cd99647c7..0000000000000000000000000000000000000000 --- a/sharding-jdbc-core/src/test/resources/integrate/dataset/tbl/expect/select/postgresql/SelectGroupByWithoutGroupedColumn.xml +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/sharding-jdbc-core/src/test/resources/integrate/dataset/tbl/expect/select/postgresql/SelectLimitWithBindingTable.xml b/sharding-jdbc-core/src/test/resources/integrate/dataset/tbl/expect/select/postgresql/SelectLimitWithBindingTable.xml deleted file mode 100644 index 2f1fbfad847cfea6611f6cae8e225fd3792b7555..0000000000000000000000000000000000000000 --- a/sharding-jdbc-core/src/test/resources/integrate/dataset/tbl/expect/select/postgresql/SelectLimitWithBindingTable.xml +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/sharding-jdbc-core/src/test/resources/integrate/dataset/tbl/expect/select/postgresql/SelectLimitWithBindingTableWithoutOffset.xml b/sharding-jdbc-core/src/test/resources/integrate/dataset/tbl/expect/select/postgresql/SelectLimitWithBindingTableWithoutOffset.xml deleted file mode 100644 index be8abd3e13c5b328bf3d5fa270051316e3d40e77..0000000000000000000000000000000000000000 --- a/sharding-jdbc-core/src/test/resources/integrate/dataset/tbl/expect/select/postgresql/SelectLimitWithBindingTableWithoutOffset.xml +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/sharding-jdbc-core/src/test/resources/integrate/dataset/tbl/expect/select/postgresql/SelectNoShardingTable.xml b/sharding-jdbc-core/src/test/resources/integrate/dataset/tbl/expect/select/postgresql/SelectNoShardingTable.xml deleted file mode 100644 index 61a3d0f405a0e6a051963e7dec1cca4d9bcbb0db..0000000000000000000000000000000000000000 --- a/sharding-jdbc-core/src/test/resources/integrate/dataset/tbl/expect/select/postgresql/SelectNoShardingTable.xml +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/sharding-jdbc-core/src/test/resources/integrate/dataset/tbl/expect/select/postgresql/SelectWithBindingTableAndConfigTable.xml b/sharding-jdbc-core/src/test/resources/integrate/dataset/tbl/expect/select/postgresql/SelectWithBindingTableAndConfigTable.xml deleted file mode 100644 index 736222fabe1d07a6cd6aca18a44dc279b51dc7ba..0000000000000000000000000000000000000000 --- a/sharding-jdbc-core/src/test/resources/integrate/dataset/tbl/expect/select/postgresql/SelectWithBindingTableAndConfigTable.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - -