mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-15 12:14:18 +00:00
10 lines
257 B
MySQL
10 lines
257 B
MySQL
|
-- No virtual columns should be output in DESC TABLE query.
|
||
|
|
||
|
DROP TABLE IF EXISTS upyachka;
|
||
|
CREATE TABLE upyachka (x UInt64) ENGINE = Memory;
|
||
|
|
||
|
-- Merge table has virtual column `_table`
|
||
|
DESC TABLE merge(currentDatabase(), 'upyachka');
|
||
|
|
||
|
DROP TABLE upyachka;
|