mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-03 13:02:00 +00:00
Add a test for #10976
This commit is contained in:
parent
f9b1e77808
commit
4f47545bc8
@ -0,0 +1,2 @@
|
||||
2 1
|
||||
1 1
|
31
tests/queries/0_stateless/01599_mutation_query_params.sh
Executable file
31
tests/queries/0_stateless/01599_mutation_query_params.sh
Executable file
@ -0,0 +1,31 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)
|
||||
. "$CURDIR"/../shell_config.sh
|
||||
|
||||
|
||||
$CLICKHOUSE_CLIENT -n --query "
|
||||
DROP TABLE IF EXISTS test;
|
||||
|
||||
CREATE TABLE test
|
||||
(
|
||||
id UUID,
|
||||
date_time DateTime,
|
||||
x UInt32,
|
||||
y UInt32
|
||||
) ENGINE = MergeTree()
|
||||
PARTITION BY toYYYYMMDD(date_time)
|
||||
ORDER BY (date_time);
|
||||
|
||||
INSERT INTO test (x, y) VALUES (2, 1);
|
||||
"
|
||||
|
||||
$CLICKHOUSE_CLIENT --query "SELECT x, y FROM test"
|
||||
|
||||
$CLICKHOUSE_CLIENT --mutations_sync 1 --param_x 1 --param_y 1 --query "
|
||||
ALTER TABLE test
|
||||
UPDATE x = {x:UInt32}
|
||||
WHERE y = {y:UInt32};
|
||||
"
|
||||
|
||||
$CLICKHOUSE_CLIENT --query "SELECT x, y FROM test"
|
Loading…
Reference in New Issue
Block a user