mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-05-29 19:30:37 +00:00
* fix: add tailing separator to prefix Signed-off-by: Ruihang Xia <waynestxia@gmail.com> * project select result Signed-off-by: Ruihang Xia <waynestxia@gmail.com> --------- Signed-off-by: Ruihang Xia <waynestxia@gmail.com>
47 lines
809 B
Plaintext
47 lines
809 B
Plaintext
create schema abc;
|
|
|
|
Affected Rows: 1
|
|
|
|
use abc;
|
|
|
|
Affected Rows: 0
|
|
|
|
create table t (ts timestamp time index);
|
|
|
|
Affected Rows: 0
|
|
|
|
create schema abcde;
|
|
|
|
Affected Rows: 1
|
|
|
|
use abcde;
|
|
|
|
Affected Rows: 0
|
|
|
|
create table t (ts timestamp time index);
|
|
|
|
Affected Rows: 0
|
|
|
|
select table_catalog, table_schema, table_name from information_schema.tables where table_schema != 'information_schema';
|
|
|
|
+---------------+--------------+------------+
|
|
| table_catalog | table_schema | table_name |
|
|
+---------------+--------------+------------+
|
|
| greptime | abc | t |
|
|
| greptime | abcde | t |
|
|
| greptime | public | numbers |
|
|
+---------------+--------------+------------+
|
|
|
|
use public;
|
|
|
|
Affected Rows: 0
|
|
|
|
drop schema abc;
|
|
|
|
Affected Rows: 0
|
|
|
|
drop schema abcde;
|
|
|
|
Affected Rows: 0
|
|
|