mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-24 08:32:02 +00:00
Fix 25402_show_columns (hopefully)
This commit is contained in:
parent
12559236ee
commit
fc5406d9e2
@ -3,7 +3,8 @@
|
||||
|
||||
-- Create a test table and verify that the output of SHOW COLUMNS is sane.
|
||||
-- The matching of actual/expected results relies on the fact that the output of SHOW COLUMNS is sorted.
|
||||
CREATE OR REPLACE TABLE tab
|
||||
DROP TABLE IF EXISTS tab;
|
||||
CREATE TABLE tab
|
||||
(
|
||||
`uint64` UInt64,
|
||||
`int32` Nullable(Int32) COMMENT 'example comment',
|
||||
@ -56,7 +57,8 @@ SELECT '---';
|
||||
DROP DATABASE IF EXISTS database_123456789abcde;
|
||||
CREATE DATABASE database_123456789abcde; -- pseudo-random database name
|
||||
|
||||
CREATE OR REPLACE TABLE database_123456789abcde.tab
|
||||
DROP TABLE IF EXISTS database_123456789abcde.tab;
|
||||
CREATE TABLE database_123456789abcde.tab
|
||||
(
|
||||
`uint64` UInt64,
|
||||
`int32` Int32,
|
||||
|
Loading…
Reference in New Issue
Block a user