Get rid of double whitespaces [#CLICKHOUSE-2].

This commit is contained in:
Alexey Milovidov 2017-10-26 21:36:23 +03:00
parent 1f81797adc
commit a27981b4ef
17 changed files with 47 additions and 50 deletions

2
contrib/librdkafka vendored

@ -1 +1 @@
Subproject commit 3401fa1e45605b5ae806f94905c92f5f546a607b
Subproject commit c44f40be96556ab8145f0f5bcaa500d16d4e0fc4

2
contrib/poco vendored

@ -1 +1 @@
Subproject commit ad1643c6698a8c890b68186d5c9d72e496c27af2
Subproject commit 1e437f873645b81f8676141e17f02395fa69a0c0

View File

@ -42,7 +42,6 @@ namespace ErrorCodes
/** Hashing functions.
*
* Half MD5:
* halfMD5: String -> UInt64
*
* A faster cryptographic hash function:

View File

@ -1,7 +1,5 @@
#!/usr/bin/env bash
# METR-9072
echo "DROP DATABASE IF EXISTS collapsing_test" | clickhouse-client || exit 1
echo "CREATE DATABASE collapsing_test" | clickhouse-client || exit 2
echo "CREATE TABLE collapsing_test.p0 ( d Date, k String, s Int8, v String) ENGINE = CollapsingMergeTree(d, tuple(k), 8192, s)" | clickhouse-client || exit 3

View File

@ -12,23 +12,23 @@ function test_cmp {
rm test.json
}
test_cmp "u64 > i64 "
test_cmp "u64 > toInt64(1) "
test_cmp "i64 > u64 "
test_cmp "i64 > toUInt64(1) "
test_cmp "u64 > i64"
test_cmp "u64 > toInt64(1)"
test_cmp "i64 > u64"
test_cmp "i64 > toUInt64(1)"
test_cmp "u64 = i64 "
test_cmp "u64 = toInt64(1) "
test_cmp "i64 = u64 "
test_cmp "i64 = toUInt64(1) "
test_cmp "u64 = i64"
test_cmp "u64 = toInt64(1)"
test_cmp "i64 = u64"
test_cmp "i64 = toUInt64(1)"
test_cmp "u64 >= i64"
test_cmp "i64 > -1 "
test_cmp "i64 = 0 "
test_cmp "u64 != 0 "
test_cmp "i64 > -1"
test_cmp "i64 = 0"
test_cmp "u64 != 0"
test_cmp "i64 = f64"
test_cmp "i64 < f64"
test_cmp "f64 >= 0 "
test_cmp "f64 >= 0"
clickhouse-client -q "DROP TABLE IF EXISTS test.comparisons"