mirror of https://github.com/citusdata/citus.git
Fixes tablespace results
parent
4c79788936
commit
aa47ca8bda
|
@ -29,7 +29,7 @@ join pg_tablespace pt on pd.dattablespace = pt.oid
|
||||||
WHERE datname = 'mydatabase';
|
WHERE datname = 'mydatabase';
|
||||||
datname | encoding | datistemplate | datallowconn | datconnlimit | datcollate | datctype | datacl | database_owner | database_owner | tablespace
|
datname | encoding | datistemplate | datallowconn | datconnlimit | datcollate | datctype | datacl | database_owner | database_owner | tablespace
|
||||||
---------------------------------------------------------------------
|
---------------------------------------------------------------------
|
||||||
mydatabase | 6 | f | t | 10 | C | C | | create_drop_db_test_user | create_drop_db_test_user | test_tablespace
|
mydatabase | 6 | f | t | 10 | C | C | | create_drop_db_test_user | create_drop_db_test_user | create_drop_db_tablespace
|
||||||
(1 row)
|
(1 row)
|
||||||
|
|
||||||
\c - - - :worker_1_port
|
\c - - - :worker_1_port
|
||||||
|
@ -43,7 +43,7 @@ join pg_tablespace pt on pd.dattablespace = pt.oid
|
||||||
WHERE datname = 'mydatabase';
|
WHERE datname = 'mydatabase';
|
||||||
datname | encoding | datistemplate | datallowconn | datconnlimit | datcollate | datctype | datacl | database_owner | database_owner | tablespace
|
datname | encoding | datistemplate | datallowconn | datconnlimit | datcollate | datctype | datacl | database_owner | database_owner | tablespace
|
||||||
---------------------------------------------------------------------
|
---------------------------------------------------------------------
|
||||||
mydatabase | 6 | f | t | 10 | C | C | | create_drop_db_test_user | create_drop_db_test_user | test_tablespace
|
mydatabase | 6 | f | t | 10 | C | C | | create_drop_db_test_user | create_drop_db_test_user | create_drop_db_tablespace
|
||||||
(1 row)
|
(1 row)
|
||||||
|
|
||||||
\c - - - :worker_2_port
|
\c - - - :worker_2_port
|
||||||
|
@ -57,7 +57,7 @@ join pg_tablespace pt on pd.dattablespace = pt.oid
|
||||||
WHERE datname = 'mydatabase';
|
WHERE datname = 'mydatabase';
|
||||||
datname | encoding | datistemplate | datallowconn | datconnlimit | datcollate | datctype | datacl | database_owner | database_owner | tablespace
|
datname | encoding | datistemplate | datallowconn | datconnlimit | datcollate | datctype | datacl | database_owner | database_owner | tablespace
|
||||||
---------------------------------------------------------------------
|
---------------------------------------------------------------------
|
||||||
mydatabase | 6 | f | t | 10 | C | C | | create_drop_db_test_user | create_drop_db_test_user | test_tablespace
|
mydatabase | 6 | f | t | 10 | C | C | | create_drop_db_test_user | create_drop_db_test_user | create_drop_db_tablespace
|
||||||
(1 row)
|
(1 row)
|
||||||
|
|
||||||
\c - - - :master_port
|
\c - - - :master_port
|
||||||
|
|
Loading…
Reference in New Issue