mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-25 09:02:00 +00:00
Fixed test #4654.
This commit is contained in:
parent
f76a9ba4c0
commit
84420eefef
@ -1,2 +1,2 @@
|
|||||||
CREATE VIEW test.t ( number UInt64) AS SELECT number FROM system.numbers
|
CREATE VIEW test.t ( number UInt64) AS SELECT number FROM system.numbers
|
||||||
CREATE VIEW test.t ( next_number UInt64) AS SELECT number + 1 FROM system.numbers
|
CREATE VIEW test.t ( next_number UInt64) AS SELECT number + 1 AS next_number FROM system.numbers
|
||||||
|
@ -2,5 +2,8 @@ DROP TABLE IF EXISTS test.t;
|
|||||||
|
|
||||||
CREATE OR REPLACE VIEW test.t (number UInt64) AS SELECT number FROM system.numbers;
|
CREATE OR REPLACE VIEW test.t (number UInt64) AS SELECT number FROM system.numbers;
|
||||||
SHOW CREATE TABLE test.t;
|
SHOW CREATE TABLE test.t;
|
||||||
CREATE OR REPLACE VIEW test.t (next_number UInt64) AS SELECT number+1 FROM system.numbers;
|
|
||||||
|
CREATE OR REPLACE VIEW test.t AS SELECT number+1 AS next_number FROM system.numbers;
|
||||||
SHOW CREATE TABLE test.t;
|
SHOW CREATE TABLE test.t;
|
||||||
|
|
||||||
|
DROP TABLE test.t;
|
||||||
|
Loading…
Reference in New Issue
Block a user