mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +00:00
39 lines
1.3 KiB
Bash
Executable File
39 lines
1.3 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)
|
|
. $CURDIR/../shell_config.sh
|
|
|
|
function perform()
|
|
{
|
|
local query=$1
|
|
TZ=UTC $CLICKHOUSE_CLIENT \
|
|
--use_client_time_zone=1 \
|
|
--input_format_values_interpret_expressions=0 \
|
|
--query "$query" 2>/dev/null
|
|
if [ "$?" -ne 0 ]; then
|
|
echo "query failed"
|
|
fi
|
|
}
|
|
|
|
perform "DROP TABLE IF EXISTS alter_00427"
|
|
perform "CREATE TABLE alter_00427 (d Date, a Enum8('foo'=1), b DateTime, c DateTime) ENGINE=MergeTree(d, (a, b, toTime(c)), 8192)"
|
|
|
|
perform "INSERT INTO alter_00427 VALUES ('2017-02-09', 'foo', '2017-02-09 00:00:00', '2017-02-09 00:00:00')"
|
|
|
|
# Must fail because d is used as as a date column in MergeTree
|
|
perform "ALTER TABLE alter_00427 MODIFY COLUMN d UInt16"
|
|
|
|
perform "ALTER TABLE alter_00427 MODIFY COLUMN a Enum8('foo'=1, 'bar'=2)"
|
|
perform "ALTER TABLE alter_00427 MODIFY COLUMN b UInt32"
|
|
|
|
# Must fail because column c is used in primary key via an expression.
|
|
perform "ALTER TABLE alter_00427 MODIFY COLUMN c UInt32"
|
|
|
|
perform "INSERT INTO alter_00427 VALUES ('2017-02-09', 'bar', 1486598400, '2017-02-09 00:00:00')"
|
|
|
|
perform "SELECT d FROM alter_00427 WHERE a = 'bar'"
|
|
|
|
perform "SELECT a, b, b = toUnixTimestamp(c) FROM alter_00427 ORDER BY a FORMAT TSV"
|
|
|
|
perform "DROP TABLE alter_00427"
|