diff --git a/tests/suites/0_stateless/14_clickhouse_http_handler/14_0001_clickhouse_http.result b/tests/suites/0_stateless/14_clickhouse_http_handler/14_0001_clickhouse_http.result index 13f781a5adf22..d808b4453d9ba 100644 --- a/tests/suites/0_stateless/14_clickhouse_http_handler/14_0001_clickhouse_http.result +++ b/tests/suites/0_stateless/14_clickhouse_http_handler/14_0001_clickhouse_http.result @@ -12,7 +12,10 @@ String t2 Table Create Table String String -t2 CREATE TABLE `t2` (\n `a` INT\n) ENGINE=FUSE COMPRESSION=\'zstd\' STORAGE_FORMAT=\'parquet\' +t2 CREATE TABLE `t2` (\n `a` INT\n) ENGINE=FUSE +Table Create Table +String String +t2 CREATE TABLE `t2` (\n `a` INT\n) ENGINE=FUSE Field Type Null Default Extra String String String String String a INT NO 0 diff --git a/tests/suites/0_stateless/14_clickhouse_http_handler/14_0001_clickhouse_http.sh b/tests/suites/0_stateless/14_clickhouse_http_handler/14_0001_clickhouse_http.sh index 6e1fb1008613c..bd583c87dfea4 100755 --- a/tests/suites/0_stateless/14_clickhouse_http_handler/14_0001_clickhouse_http.sh +++ b/tests/suites/0_stateless/14_clickhouse_http_handler/14_0001_clickhouse_http.sh @@ -21,6 +21,8 @@ curl -s -u root: -XPOST "http://localhost:${QUERY_CLICKHOUSE_HTTP_HANDLER_PORT}/ curl -s -u root: -XPOST "http://localhost:${QUERY_CLICKHOUSE_HTTP_HANDLER_PORT}/?database=db2" -d 'create table t2(a int)' curl -s -u root: -XPOST "http://localhost:${QUERY_CLICKHOUSE_HTTP_HANDLER_PORT}/?database=db2" -d "show TABLES LIKE 't%' format TabSeparatedWithNamesAndTypes" curl -s -u root: -XPOST "http://localhost:${QUERY_CLICKHOUSE_HTTP_HANDLER_PORT}/?database=db2" -d 'show create table t2 format TabSeparatedWithNamesAndTypes' +curl -s -u root: -XPOST "http://localhost:${QUERY_CLICKHOUSE_HTTP_HANDLER_PORT}/?database=db2" -d 'set hide_options_in_show_create_table=0' +curl -s -u root: -XPOST "http://localhost:${QUERY_CLICKHOUSE_HTTP_HANDLER_PORT}/?database=db2" -d 'show create table t2 format TabSeparatedWithNamesAndTypes' curl -s -u root: -XPOST "http://localhost:${QUERY_CLICKHOUSE_HTTP_HANDLER_PORT}/?database=db2" -d 'desc t2 format TabSeparatedWithNamesAndTypes' curl -s -u root: -XPOST "http://localhost:${QUERY_CLICKHOUSE_HTTP_HANDLER_PORT}/?database=db2" -d 'insert into table t2 values(1)' curl -s -u root: -XPOST "http://localhost:${QUERY_CLICKHOUSE_HTTP_HANDLER_PORT}/?" -d 'select * from db2.t2'