dbms: fixed tests [#METR-16762].

This commit is contained in:
Alexey Milovidov 2015-06-10 02:54:37 +03:00
parent 9237e308fb
commit b2bfa55a37
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
DROP TABLE IF EXISTS test.join;
CREATE TABLE test.join (k UInt8, s String) ENGINE = Join(ANY, LEFT, k);
CREATE TABLE test.join (k UInt64, s String) ENGINE = Join(ANY, LEFT, k);
USE test;

View File

@ -1,6 +1,6 @@
DROP TABLE IF EXISTS test.join;
CREATE TABLE test.join (s String, x Array(UInt8), k UInt8) ENGINE = Join(ANY, LEFT, k);
CREATE TABLE test.join (s String, x Array(UInt8), k UInt64) ENGINE = Join(ANY, LEFT, k);
USE test;