tuichenchuxin commented on issue #13571:
URL:
https://github.com/apache/shardingsphere/issues/13571#issuecomment-966940898
in postgresql
```
SELECT d.oid,
d.datname AS databasename,
d.datacl,
d.datistemplate,
d.datallowconn,
pg_get_userbyid(d.datdba) AS databaseowner,
d.datcollate,
d.datctype,
shobj_description(d.oid, 'pg_database') AS description,
d.datconnlimit,
t.spcname,
d.encoding,
pg_encoding_to_char(d.encoding) AS encodingname
FROM pg_database d
LEFT JOIN pg_tablespace t ON d.dattablespace = t.oid
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]