Description
execute the sql:
CREATE TABLE City (
ID INT,
Name VARCHAR,
CountryCode CHAR(3),
District VARCHAR,
Population INT,
PRIMARY KEY (ID, CountryCode)
);
then select * from sys.table_column where table_name = 'CITY';
Attachments
Issue Links
- is part of
-
IGNITE-15424 Calcite engine. Move schema management infrastructure to the core module
- Resolved