May 17, 2026, 11:40 PM

This commit is contained in:
Paweł Domański
2026-05-18 06:40:19 +00:00
commit 64944cf004
896 changed files with 310709 additions and 0 deletions
@@ -0,0 +1 @@
postgres# select * from pg_stat_archiver;
@@ -0,0 +1,21 @@
postgres=# create database DBATEST;
CREATE DATABASE
postgres=# create database DBATEST with tablespace ts_postgres;
CREATE DATABASE
postgres#CREATE DATABASE "DBATEST"
WITH TABLESPACE ts_postgres
OWNER "postgres"
ENCODING 'UTF8'
LC_COLLATE = 'en_US.UTF-8'
LC_CTYPE = 'en_US.UTF-8'
TEMPLATE template0;
-- View database information:
postgres=# \l
postgres# select * from pg_database;