Merge pull request #6703 from arenadata/ADQM-40

test for orc input format
This commit is contained in:
alexey-milovidov 2019-08-28 18:14:40 +03:00 committed by GitHub
commit 24c8ee9fcd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 19 additions and 0 deletions

View File

@ -0,0 +1,2 @@
0 0 0 0 0 2019-01-01 test1
2147483647 -1 9223372036854775806 123.345345 345345.3453451212 2019-01-01 test2

View File

@ -0,0 +1,17 @@
#!/usr/bin/env bash
CUR_DIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)
. $CUR_DIR/../shell_config.sh
CB_DIR=$(dirname "$CLICKHOUSE_CLIENT_BINARY")
[ "$CB_DIR" == "." ] && ROOT_DIR=$CUR_DIR/../../../..
[ "$CB_DIR" != "." ] && BUILD_DIR=$CB_DIR/../..
[ -z "$ROOT_DIR" ] && ROOT_DIR=$CB_DIR/../../..
DATA_FILE=$CUR_DIR/data_orc/test.orc
${CLICKHOUSE_CLIENT} --query="DROP TABLE IF EXISTS orc_load"
${CLICKHOUSE_CLIENT} --query="CREATE TABLE orc_load (int Int32, smallint Int8, bigint Int64, float Float32, double Float64, date Date, y String) ENGINE = Memory"
cat $DATA_FILE | ${CLICKHOUSE_CLIENT} -q "insert into orc_load format ORC"
${CLICKHOUSE_CLIENT} --query="select * from orc_load"

Binary file not shown.