mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-11 10:04:06 +00:00
1b0d1a4450
* wip * wip * wip * Clean * fix test * clean * fix test * fix test
61 lines
2.6 KiB
Bash
Executable File
61 lines
2.6 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)
|
|
. $CURDIR/../shell_config.sh
|
|
|
|
# Not found column date in block. There are only columns: x.
|
|
|
|
# Test 1. Complex test checking columns.txt
|
|
|
|
chl="$CLICKHOUSE_CLIENT -q"
|
|
ch_dir=`${CLICKHOUSE_EXTRACT_CONFIG} -k path`
|
|
|
|
$chl "DROP TABLE IF EXISTS test.partition_428"
|
|
$chl "CREATE TABLE test.partition_428 (p Date, k Int8, v1 Int8 MATERIALIZED k + 1) ENGINE = MergeTree(p, k, 1)"
|
|
$chl "INSERT INTO test.partition_428 (p, k) VALUES(toDate(31), 1)"
|
|
$chl "INSERT INTO test.partition_428 (p, k) VALUES(toDate(1), 2)"
|
|
|
|
for part in `$chl "SELECT name FROM system.parts WHERE database='test' AND table='partition_428'"`; do
|
|
# 2 header lines + 3 columns
|
|
(sudo -n cat $ch_dir/data/test/partition_428/$part/columns.txt 2>/dev/null || \
|
|
cat $ch_dir/data/test/partition_428/$part/columns.txt) | wc -l
|
|
done
|
|
|
|
$chl "ALTER TABLE test.partition_428 FREEZE"
|
|
|
|
# Do `cd` for consistent output for reference
|
|
# Do not check increment.txt - it can be changed by other tests with FREEZE
|
|
cd $ch_dir && find shadow -type f -exec md5sum {} \; | grep "partition_428" | sed 's!shadow/[0-9]*/data/[a-z0-9_-]*/!shadow/1/data/test/!g' | sort | uniq
|
|
|
|
$chl "ALTER TABLE test.partition_428 DETACH PARTITION 197001"
|
|
$chl "ALTER TABLE test.partition_428 ATTACH PARTITION 197001"
|
|
|
|
for part in `$chl "SELECT name FROM system.parts WHERE database='test' AND table='partition_428'"`; do
|
|
# 2 header lines + 3 columns
|
|
(sudo -n cat $ch_dir/data/test/partition_428/$part/columns.txt 2>/dev/null || \
|
|
cat $ch_dir/data/test/partition_428/$part/columns.txt) | wc -l
|
|
done
|
|
|
|
$chl "ALTER TABLE test.partition_428 MODIFY COLUMN v1 Int8"
|
|
|
|
# Check the backup hasn't changed
|
|
cd $ch_dir && find shadow -type f -exec md5sum {} \; | grep "partition_428" | sed 's!shadow/[0-9]*/data/[a-z0-9_-]*/!shadow/1/data/test/!g' | sort | uniq
|
|
|
|
$chl "OPTIMIZE TABLE test.partition_428"
|
|
|
|
$chl "SELECT toUInt16(p), k, v1 FROM test.partition_428 ORDER BY k FORMAT CSV"
|
|
$chl "DROP TABLE test.partition_428"
|
|
|
|
# Test 2. Simple test
|
|
|
|
$chl "drop table if exists test.partition_428"
|
|
$chl "create table test.partition_428 (date MATERIALIZED toDate(0), x UInt64, sample_key MATERIALIZED intHash64(x)) ENGINE=MergeTree(date,sample_key,(date,x,sample_key),8192)"
|
|
$chl "insert into test.partition_428 ( x ) VALUES ( now() )"
|
|
$chl "insert into test.partition_428 ( x ) VALUES ( now()+1 )"
|
|
$chl "alter table test.partition_428 detach partition 197001"
|
|
$chl "alter table test.partition_428 attach partition 197001"
|
|
$chl "optimize table test.partition_428"
|
|
$chl "drop table test.partition_428"
|