mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-01-06 21:32:58 +00:00
fix: canonicalize catalog and schema names (#3600)
This commit is contained in:
@@ -674,6 +674,27 @@ DESC TABLE GREPTIME_REGION_PEERS;
|
||||
| down_seconds | Int64 | | YES | | FIELD |
|
||||
+--------------+--------+-----+------+---------+---------------+
|
||||
|
||||
USE INFORMATION_SCHEMA;
|
||||
|
||||
Affected Rows: 0
|
||||
|
||||
DESC COLUMNS;
|
||||
|
||||
+----------------+--------+-----+------+---------+---------------+
|
||||
| Column | Type | Key | Null | Default | Semantic Type |
|
||||
+----------------+--------+-----+------+---------+---------------+
|
||||
| table_catalog | String | | NO | | FIELD |
|
||||
| table_schema | String | | NO | | FIELD |
|
||||
| table_name | String | | NO | | FIELD |
|
||||
| column_name | String | | NO | | FIELD |
|
||||
| data_type | String | | NO | | FIELD |
|
||||
| semantic_type | String | | NO | | FIELD |
|
||||
| column_default | String | | YES | | FIELD |
|
||||
| is_nullable | String | | NO | | FIELD |
|
||||
| column_type | String | | NO | | FIELD |
|
||||
| column_comment | String | | YES | | FIELD |
|
||||
+----------------+--------+-----+------+---------+---------------+
|
||||
|
||||
drop table my_db.foo;
|
||||
|
||||
Error: 4001(TableNotFound), Table not found: greptime.my_db.foo
|
||||
|
||||
@@ -119,6 +119,10 @@ DESC TABLE RUNTIME_METRICS;
|
||||
|
||||
DESC TABLE GREPTIME_REGION_PEERS;
|
||||
|
||||
USE INFORMATION_SCHEMA;
|
||||
|
||||
DESC COLUMNS;
|
||||
|
||||
drop table my_db.foo;
|
||||
|
||||
use public;
|
||||
|
||||
Reference in New Issue
Block a user