Files
greptimedb/tests/cases/standalone/common/information_schema/tables.result
Ruihang Xia 85a231850d fix: add tailing separator to prefix (#4078)
* 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>
2024-05-30 15:29:26 +00:00

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