File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
client-v2/src/test/java/com/clickhouse/client Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change 1616import java .util .concurrent .TimeUnit ;
1717import java .util .concurrent .atomic .AtomicInteger ;
1818import java .util .function .Supplier ;
19+
1920import org .testng .Assert ;
2021import org .testng .annotations .AfterMethod ;
2122import org .testng .annotations .BeforeMethod ;
@@ -231,7 +232,8 @@ void testStringParams(String paramValue) throws Exception {
231232 String table = "test_params_unicode" ;
232233 String column = "val" ;
233234 client .execute ("DROP TABLE IF EXISTS " + table ).get ();
234- client .execute ("CREATE TABLE " + table + "(" + column + " String) Engine = Memory" ).get ();
235+ client .execute ("CREATE TABLE " + table + "(" + column + " String) "
236+ + "ENGINE = MergeTree ORDER BY tuple()" ).get ();
235237 client .query (
236238 "INSERT INTO " + table + "(" + column + ") VALUES ('" + paramValue + "')" ).get ();
237239 try (QueryResponse r = client .query (
You can’t perform that action at this time.
0 commit comments