mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-01-06 21:32:58 +00:00
* feat: improve information_schema.columns * feat: adds information_schema.schemata * fix: instance test * fix: comment
37 lines
1008 B
Plaintext
37 lines
1008 B
Plaintext
show databases;
|
|
|
|
+-----------------------+
|
|
| Schemas |
|
|
+-----------------------+
|
|
| greptime_private |
|
|
| illegal-database |
|
|
| information_schema |
|
|
| public |
|
|
| test_public_schema |
|
|
| upper_case_table_name |
|
|
+-----------------------+
|
|
|
|
use information_schema;
|
|
|
|
Affected Rows: 0
|
|
|
|
show tables;
|
|
|
|
+---------------------------------------+
|
|
| Tables |
|
|
+---------------------------------------+
|
|
| build_info |
|
|
| character_sets |
|
|
| check_constraints |
|
|
| collation_character_set_applicability |
|
|
| collations |
|
|
| column_privileges |
|
|
| column_statistics |
|
|
| columns |
|
|
| engines |
|
|
| events |
|
|
| schemata |
|
|
| tables |
|
|
+---------------------------------------+
|
|
|