mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 09:32:06 +00:00
Add a test for #10735
This commit is contained in:
parent
9ea4bea8f9
commit
e64c973308
@ -0,0 +1,4 @@
|
||||
x
|
||||
1
|
||||
i
|
||||
3
|
21
tests/queries/0_stateless/02009_mysql_client_empty_result.sh
Executable file
21
tests/queries/0_stateless/02009_mysql_client_empty_result.sh
Executable file
@ -0,0 +1,21 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)
|
||||
# shellcheck source=../shell_config.sh
|
||||
. "$CURDIR"/../shell_config.sh
|
||||
|
||||
${MYSQL_CLIENT} --batch --execute 'SELECT 1 AS x'
|
||||
${MYSQL_CLIENT} --batch --execute 'SELECT 1 AS x WHERE 0'
|
||||
|
||||
${MYSQL_CLIENT} <<<"
|
||||
DROP TABLE IF EXISTS b;
|
||||
CREATE TABLE b (i UInt8) ENGINE=MergeTree() PRIMARY KEY(i) ORDER BY (i);
|
||||
INSERT INTO b VALUES (1), (2), (3);
|
||||
"
|
||||
|
||||
${MYSQL_CLIENT} --batch --execute 'SELECT * FROM default.b WHERE i>=3;'
|
||||
${MYSQL_CLIENT} --batch --execute 'SELECT * FROM default.b WHERE i>=300;'
|
||||
|
||||
${MYSQL_CLIENT} <<<"
|
||||
DROP TABLE b;
|
||||
"
|
Loading…
Reference in New Issue
Block a user