mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +00:00
9edbbc637a
* Store the key instead of iterator, which may get invalidated by erasure from another instance. * Add test
13 lines
279 B
Bash
Executable File
13 lines
279 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Test fix for issue #5066
|
|
|
|
CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)
|
|
. $CURDIR/../shell_config.sh
|
|
|
|
set -e
|
|
|
|
for i in {1..100}; do \
|
|
$CLICKHOUSE_CLIENT -q "SELECT name FROM system.tables UNION ALL SELECT name FROM system.columns format Null";
|
|
done
|