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 16
16
import java .util .concurrent .TimeUnit ;
17
17
import java .util .concurrent .atomic .AtomicInteger ;
18
18
import java .util .function .Supplier ;
19
+
19
20
import org .testng .Assert ;
20
21
import org .testng .annotations .AfterMethod ;
21
22
import org .testng .annotations .BeforeMethod ;
@@ -231,7 +232,8 @@ void testStringParams(String paramValue) throws Exception {
231
232
String table = "test_params_unicode" ;
232
233
String column = "val" ;
233
234
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 ();
235
237
client .query (
236
238
"INSERT INTO " + table + "(" + column + ") VALUES ('" + paramValue + "')" ).get ();
237
239
try (QueryResponse r = client .query (
You can’t perform that action at this time.
0 commit comments