From 93a31a359c57cdcf00f61379b660498c915456c7 Mon Sep 17 00:00:00 2001 From: alexey-milovidov Date: Wed, 18 Jul 2018 09:27:06 +0300 Subject: [PATCH] Update 00633_func_or_in.sql --- dbms/tests/queries/0_stateless/00633_func_or_in.sql | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/dbms/tests/queries/0_stateless/00633_func_or_in.sql b/dbms/tests/queries/0_stateless/00633_func_or_in.sql index 8aa467b4ce8..6f83b774eaf 100644 --- a/dbms/tests/queries/0_stateless/00633_func_or_in.sql +++ b/dbms/tests/queries/0_stateless/00633_func_or_in.sql @@ -1,8 +1,8 @@ -drop table if exists orin_test; +drop table if exists test.orin_test; -create table orin_test (c1 Int32) engine=Memory; -insert into orin_test values(1), (100); +create table test.orin_test (c1 Int32) engine=Memory; +insert into test.orin_test values(1), (100); -select minus(c1 = 1 or c1=2 or c1 =3, c1=5) from orin_test; +select minus(c1 = 1 or c1=2 or c1 =3, c1=5) from test.orin_test; -drop table orin_test; +drop table test.orin_test;