You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
RUN sed -i "s|http://archive.ubuntu.com|$apt_archive|g" /etc/apt/sources.list
12
-
13
-
ENV LANG=C.UTF-8
14
-
ENV TZ=Europe/Amsterdam
15
-
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
clickhouse-client --port $LEFT_SERVER_PORT --query "rename table datasets.hits_v1 to test.hits"||:
@@ -156,9 +156,9 @@ function restart
156
156
wait_for_server $RIGHT_SERVER_PORT$right_pid
157
157
echo right ok
158
158
159
-
clickhouse-client --port $LEFT_SERVER_PORT --query "select * from system.tables where database != 'system'"
159
+
clickhouse-client --port $LEFT_SERVER_PORT --query "select * from system.tables where database NOT IN ('system', 'INFORMATION_SCHEMA', 'information_schema')"
160
160
clickhouse-client --port $LEFT_SERVER_PORT --query "select * from system.build_options"
161
-
clickhouse-client --port $RIGHT_SERVER_PORT --query "select * from system.tables where database != 'system'"
161
+
clickhouse-client --port $RIGHT_SERVER_PORT --query "select * from system.tables where database NOT IN ('system', 'INFORMATION_SCHEMA', 'information_schema')"
162
162
clickhouse-client --port $RIGHT_SERVER_PORT --query "select * from system.build_options"
163
163
164
164
# Check again that both servers we started are running -- this is important
@@ -352,14 +352,12 @@ function get_profiles
352
352
wait
353
353
354
354
clickhouse-client --port $LEFT_SERVER_PORT --query "select * from system.query_log where type in ('QueryFinish', 'ExceptionWhileProcessing') format TSVWithNamesAndTypes"> left-query-log.tsv ||: &
355
-
clickhouse-client --port $LEFT_SERVER_PORT --query "select * from system.query_thread_log format TSVWithNamesAndTypes"> left-query-thread-log.tsv ||: &
356
355
clickhouse-client --port $LEFT_SERVER_PORT --query "select * from system.trace_log format TSVWithNamesAndTypes"> left-trace-log.tsv ||: &
357
356
clickhouse-client --port $LEFT_SERVER_PORT --query "select arrayJoin(trace) addr, concat(splitByChar('/', addressToLine(addr))[-1], '#', demangle(addressToSymbol(addr)) ) name from system.trace_log group by addr format TSVWithNamesAndTypes"> left-addresses.tsv ||: &
358
357
clickhouse-client --port $LEFT_SERVER_PORT --query "select * from system.metric_log format TSVWithNamesAndTypes"> left-metric-log.tsv ||: &
359
358
clickhouse-client --port $LEFT_SERVER_PORT --query "select * from system.asynchronous_metric_log format TSVWithNamesAndTypes"> left-async-metric-log.tsv ||: &
360
359
361
360
clickhouse-client --port $RIGHT_SERVER_PORT --query "select * from system.query_log where type in ('QueryFinish', 'ExceptionWhileProcessing') format TSVWithNamesAndTypes"> right-query-log.tsv ||: &
362
-
clickhouse-client --port $RIGHT_SERVER_PORT --query "select * from system.query_thread_log format TSVWithNamesAndTypes"> right-query-thread-log.tsv ||: &
363
361
clickhouse-client --port $RIGHT_SERVER_PORT --query "select * from system.trace_log format TSVWithNamesAndTypes"> right-trace-log.tsv ||: &
364
362
clickhouse-client --port $RIGHT_SERVER_PORT --query "select arrayJoin(trace) addr, concat(splitByChar('/', addressToLine(addr))[-1], '#', demangle(addressToSymbol(addr)) ) name from system.trace_log group by addr format TSVWithNamesAndTypes"> right-addresses.tsv ||: &
365
363
clickhouse-client --port $RIGHT_SERVER_PORT --query "select * from system.metric_log format TSVWithNamesAndTypes"> right-metric-log.tsv ||: &
0 commit comments