Files
greptimedb/tests/cases/standalone/common/system/information_schema.sql
Ning Sun 11cf9c827e feat: dbeaver mysql compatibility, use statement and information_schema.tables (#4218)
* feat: add more placeholder field in information_schema.tables

* feat: make schema modifiable for use statement

* chore: add todo items

* fix: resolve lint issues after data type changes

* chore: update sqlness results

* refactor: patch for select database is no longer needed

* test: align tests and data types

* Apply suggestions from code review

Co-authored-by: dennis zhuang <killme2008@gmail.com>

* fix: use canonicalize_identifier for database name

* feat: add all columns for information_schema.tables

* test: remove vairables from sqlness results

* feat: add to_string impl for table options

---------

Co-authored-by: dennis zhuang <killme2008@gmail.com>
2024-07-03 01:31:13 +00:00

130 lines
3.0 KiB
SQL

-- should not able to create information_schema
create database information_schema;
-- scripts table has different table ids in different modes
-- SQLNESS REPLACE (\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}\.\d{3}) DATETIME
select *
from information_schema.tables
where table_name != 'scripts'
order by table_schema, table_name;
select * from information_schema.columns order by table_schema, table_name, column_name;
create
database my_db;
use my_db;
create table foo
(
ts TIMESTAMP TIME INDEX
);
select table_name
from information_schema.tables
where table_schema = 'my_db'
order by table_name;
select table_name
from information_schema.tables
where table_schema in ('my_db', 'public')
order by table_name;
select table_name
from information_schema.tables
where table_schema like 'my%'
order by table_name;
select table_name
from information_schema.tables
where table_schema not in ('my_db', 'information_schema')
order by table_name;
select table_catalog, table_schema, table_name, table_type, engine
from information_schema.tables
where table_catalog = 'greptime'
and table_schema != 'public'
and table_schema != 'information_schema'
order by table_schema, table_name;
select table_catalog, table_schema, table_name, column_name, data_type, semantic_type
from information_schema.columns
where table_catalog = 'greptime'
and table_schema != 'public'
and table_schema != 'information_schema'
order by table_schema, table_name, column_name;
-- test query filter for columns --
select table_catalog, table_schema, table_name, column_name, data_type, semantic_type
from information_schema.columns
where table_catalog = 'greptime'
and (table_schema in ('public')
or
table_schema == 'my_db')
order by table_schema, table_name, column_name;
use public;
drop schema my_db;
use information_schema;
-- test query filter for key_column_usage --
select * from KEY_COLUMN_USAGE where CONSTRAINT_NAME = 'TIME INDEX';
select * from KEY_COLUMN_USAGE where CONSTRAINT_NAME != 'TIME INDEX';
select * from KEY_COLUMN_USAGE where CONSTRAINT_NAME LIKE '%INDEX';
select * from KEY_COLUMN_USAGE where CONSTRAINT_NAME NOT LIKE '%INDEX';
select * from KEY_COLUMN_USAGE where CONSTRAINT_NAME == 'TIME INDEX' AND CONSTRAINT_SCHEMA != 'my_db';
-- schemata --
desc table schemata;
select * from schemata where catalog_name = 'greptime' and schema_name != 'public' order by catalog_name, schema_name;
-- test engines
select * from engines;
desc table build_info;
select count(*) from build_info;
desc table key_column_usage;
select * from key_column_usage;
-- tables not implemented
DESC TABLE COLUMN_PRIVILEGES;
SELECT * FROM COLUMN_PRIVILEGES;
DESC TABLE COLUMN_STATISTICS;
SELECT * FROM COLUMN_STATISTICS;
SELECT * FROM CHARACTER_SETS;
SELECT * FROM COLLATIONS;
SELECT * FROM COLLATION_CHARACTER_SET_APPLICABILITY;
DESC TABLE CHECK_CONSTRAINTS;
SELECT * FROM CHECK_CONSTRAINTS;
DESC TABLE RUNTIME_METRICS;
DESC TABLE REGION_PEERS;
USE INFORMATION_SCHEMA;
DESC COLUMNS;
drop table my_db.foo;
use public;