Fix 25402_show_columns (hopefully)

This commit is contained in:
Robert Schulze 2023-03-29 09:39:58 +00:00
parent 12559236ee
commit fc5406d9e2
No known key found for this signature in database
GPG Key ID: 26703B55FB13728A

View File

@ -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,