We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b93815a commit 1b81ce5Copy full SHA for 1b81ce5
jdbc-v2/src/test/java/com/clickhouse/jdbc/DataTypeTests.java
@@ -831,10 +831,10 @@ public void testDynamicTypesSimpleStatement() throws SQLException {
831
if (!isCloud()) {
832
properties.setProperty(ClientConfigProperties.serverSetting("allow_experimental_dynamic_type"), "1");
833
}
834
- assertTrue(runQuery("CREATE TABLE test_dynamic (order Int8, "
+ runQuery("CREATE TABLE test_dynamic (order Int8, "
835
+ "dynamic Dynamic"
836
+ ") ENGINE = MergeTree ORDER BY ()",
837
- properties), "Failed to create table");
+ properties);
838
839
// Insert random (valid) values
840
long seed = System.currentTimeMillis();
0 commit comments