This commit is contained in:
Alexey Milovidov 2023-11-06 05:43:04 +01:00
parent 60978f58ec
commit 294b55a618

View File

@ -23,7 +23,7 @@ function run_selects()
for t in "${tables_arr[@]}"
do
${CLICKHOUSE_CLIENT} -q "SELECT * FROM $t LIMIT $LIMIT FORMAT Null" # Suppress style check: database=$CLICKHOUSE_DATABASEs
${CLICKHOUSE_CLIENT} -q "SELECT * FROM $t LIMIT $LIMIT SETTINGS allow_introspection_functions = 1 FORMAT Null" # Suppress style check: database=$CLICKHOUSE_DATABASEs
done
}