mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-01-13 16:52:56 +00:00
* fix: forbid to change tables in information_schema * refactor: use unified read-only check function * test: add more sqlness tests for information_schema * refactor: move is_readonly_schema to common_catalog
22 lines
496 B
SQL
22 lines
496 B
SQL
--- test information_schema.table_constraints ----
|
|
|
|
USE INFORMATION_SCHEMA;
|
|
|
|
DESC TABLE TABLE_CONSTRAINTS;
|
|
|
|
SELECT * FROM TABLE_CONSTRAINTS ORDER BY TABLE_NAME, CONSTRAINT_NAME;
|
|
|
|
use public;
|
|
|
|
CREATE TABLE test(i double, j string, ts timestamp time index, primary key(j));
|
|
|
|
use INFORMATION_SCHEMA;
|
|
|
|
SELECT * FROM TABLE_CONSTRAINTS ORDER BY TABLE_NAME, CONSTRAINT_NAME;
|
|
|
|
SELECT * FROM TABLE_CONSTRAINTS WHERE TABLE_NAME = 'test' ORDER BY TABLE_NAME, CONSTRAINT_NAME;
|
|
|
|
use public;
|
|
|
|
DROP TABLE test;
|