mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-24 08:32:02 +00:00
Reading the test #4063
This commit is contained in:
parent
736e1e2d71
commit
7a4c46b38f
@ -6,12 +6,51 @@ CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)
|
||||
. $CURDIR/../shell_config.sh
|
||||
|
||||
#create the schema file
|
||||
echo "@0x803231eaa402b968;struct NestedNestedOne {nestednestednumber @0 :UInt64;}struct NestedNestedTwo {nestednestedtext @0 :Text;}struct NestedOne {nestednestedone @0 :NestedNestedOne;nestednestedtwo @1 :NestedNestedTwo;nestednumber @2:UInt64;}struct NestedTwo {nestednestedone @0 :NestedNestedOne;nestednestedtwo @1 : NestedNestedTwo;nestedtext @2 :Text;}struct CapnProto { number @0 :UInt64;string @1 :Text;nestedone @2 : NestedOne;nestedtwo @3 : NestedTwo;nestedthree @4 : NestedNestedTwo;}" > test.capnp
|
||||
echo "
|
||||
@0x803231eaa402b968;
|
||||
struct NestedNestedOne
|
||||
{
|
||||
nestednestednumber @0 : UInt64;
|
||||
}
|
||||
struct NestedNestedTwo
|
||||
{
|
||||
nestednestedtext @0 : Text;
|
||||
}
|
||||
struct NestedOne
|
||||
{
|
||||
nestednestedone @0 : NestedNestedOne;
|
||||
nestednestedtwo @1 : NestedNestedTwo;
|
||||
nestednumber @2: UInt64;
|
||||
}
|
||||
struct NestedTwo
|
||||
{
|
||||
nestednestedone @0 : NestedNestedOne;
|
||||
nestednestedtwo @1 : NestedNestedTwo;
|
||||
nestedtext @2 : Text;
|
||||
}
|
||||
struct CapnProto
|
||||
{
|
||||
number @0 : UInt64;
|
||||
string @1 : Text;
|
||||
nestedone @2 : NestedOne;
|
||||
nestedtwo @3 : NestedTwo;
|
||||
nestedthree @4 : NestedNestedTwo;
|
||||
}" > test.capnp
|
||||
|
||||
$CLICKHOUSE_CLIENT -q "DROP TABLE IF EXISTS test.capnproto_input"
|
||||
$CLICKHOUSE_CLIENT -q "CREATE TABLE test.capnproto_input ( number UInt64,string String,nestedone_nestednumber UInt64,nestedone_nestednestedone_nestednestednumber UInt64,nestedone_nestednestedtwo_nestednestedtext String,nestedtwo_nestednestedtwo_nestednestedtext String,nestedtwo_nestednestedone_nestednestednumber UInt64,nestedtwo_nestedtext String) ENGINE = Memory"
|
||||
$CLICKHOUSE_CLIENT -q "CREATE TABLE test.capnproto_input
|
||||
(
|
||||
number UInt64,
|
||||
string String,
|
||||
nestedone_nestednumber UInt64,
|
||||
nestedone_nestednestedone_nestednestednumber UInt64,
|
||||
nestedone_nestednestedtwo_nestednestedtext String,
|
||||
nestedtwo_nestednestedtwo_nestednestedtext String,
|
||||
nestedtwo_nestednestedone_nestednestednumber UInt64,
|
||||
nestedtwo_nestedtext String
|
||||
) ENGINE = Memory"
|
||||
|
||||
echo -ne '\x00\x00\x00\x00\x15\x00\x00\x00\x00\x00\x00\x00\x01\x00\x04\x00\x01\x00\x00\x00\x00\x00\x00\x00\x0d\x00\x00\x00\x12\x00\x00\x00\x0c\x00\x00\x00\x01\x00\x02\x00\x20\x00\x00\x00\x00\x00\x03\x00\x34\x00\x00\x00\x00\x00\x01\x00\x32\x00\x00\x00\x00\x00\x00\x00\x05\x00\x00\x00\x00\x00\x00\x00\x04\x00\x00\x00\x01\x00\x00\x00\x04\x00\x00\x00\x00\x00\x01\x00\x03\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x12\x00\x00\x00\x34\x00\x00\x00\x00\x00\x00\x00\x08\x00\x00\x00\x01\x00\x00\x00\x08\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x06\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x12\x00\x00\x00\x37\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x12\x00\x00\x00\x39\x00\x00\x00\x00\x00\x00\x00' | $CLICKHOUSE_CLIENT --stacktrace --format_schema='test:CapnProto' --query="INSERT INTO test.capnproto_input FORMAT CapnProto";
|
||||
echo -ne '\x00\x00\x00\x00\x15\x00\x00\x00\x00\x00\x00\x00\x01\x00\x04\x00\x01\x00\x00\x00\x00\x00\x00\x00\x0d\x00\x00\x00\x12\x00\x00\x00\x0c\x00\x00\x00\x01\x00\x02\x00\x20\x00\x00\x00\x00\x00\x03\x00\x34\x00\x00\x00\x00\x00\x01\x00\x32\x00\x00\x00\x00\x00\x00\x00\x05\x00\x00\x00\x00\x00\x00\x00\x04\x00\x00\x00\x01\x00\x00\x00\x04\x00\x00\x00\x00\x00\x01\x00\x03\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x12\x00\x00\x00\x34\x00\x00\x00\x00\x00\x00\x00\x08\x00\x00\x00\x01\x00\x00\x00\x08\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x06\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x12\x00\x00\x00\x37\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x12\x00\x00\x00\x39\x00\x00\x00\x00\x00\x00\x00' | $CLICKHOUSE_CLIENT --stacktrace --format_schema='test:CapnProto' --query="INSERT INTO test.capnproto_input FORMAT CapnProto";
|
||||
|
||||
$CLICKHOUSE_CLIENT -q "SELECT * FROM test.capnproto_input"
|
||||
$CLICKHOUSE_CLIENT -q "DROP TABLE test.capnproto_input"
|
||||
|
Loading…
Reference in New Issue
Block a user