Re: [GENERAL] CREATE TABLE LIKE including all not including storageparameters?
От | Achilleas Mantzios |
---|---|
Тема | Re: [GENERAL] CREATE TABLE LIKE including all not including storageparameters? |
Дата | |
Msg-id | 318c7d14-5706-b0ce-c73c-008b650e9d9c@matrix.gatewaynet.com обсуждение исходный текст |
Ответ на | [GENERAL] CREATE TABLE LIKE including all not including storage parameters? (Milen Blagojevic <milen.blagojevic@gmail.com>) |
Ответы |
Re: [GENERAL] CREATE TABLE LIKE including all not including storage parameters?
|
Список | pgsql-general |
On 05/09/2017 11:56, Milen Blagojevic wrote:
Hi all,
I am using CREATE TABLE LIKE for creating partitions :Lets say this is my main table:\d+ test_tablTable "public.test_tabl"Column | Type | Modifiers | Storage | Stats target | Description--------------+-----------------------------+-----------+--- -------+--------------+------- ------ id | integer | not null | plain | |test_name | character varying(10) | | extended | |test_value | numeric(19,3) | | main | |time_created | timestamp without time zone | | plain | |Indexes:"test_tabl_pkey" PRIMARY KEY, btree (id)"ix_test_tabl_time_created" btree (time_created)Child tables: test_tabl_20170905Options: fillfactor=75I am creating new partitions with following query:create table test_tabl_20170906 (like test_tabl INCLUDING ALL) inherits (test_tabl);\d+ test_tabl_20170906Table "public.test_tabl_20170906"Column | Type | Modifiers | Storage | Stats target | Description--------------+-----------------------------+-----------+--- -------+--------------+------- ------ id | integer | not null | plain | |test_name | character varying(10) | | extended | |test_value | numeric(19,3) | | main | |time_created | timestamp without time zone | | plain | |Indexes:"test_tabl_20170906_pkey" PRIMARY KEY, btree (id)"test_tabl_20170906_time_created_idx" btree (time_created) Inherits: test_tablAccording to PostgreSQL documentation:INCLUDING ALL is an abbreviated form of INCLUDING DEFAULTS INCLUDING CONSTRAINTS INCLUDING INDEXES INCLUDING STORAGE INCLUDING COMMENTS.But in this case child table didn't inherit filfactor (behaviour is the same for autovacuum parameters)Version is 9.4.13:version------------------------------------------------------------ ------------------------------ ---------------------- PostgreSQL 9.4.13 on x86_64-unknown-linux-gnu, compiled by gcc (GCC) 4.8.5 20150623 (Red Hat 4.8.5-11), 64-bit
Same in PostgreSQL 10beta3 on x86_64-pc-linux-gnu.
testdb=# create table dad(foo text) WITH (fillfactor=99, autovacuum_freeze_max_age=20000000);
CREATE TABLE
testdb=# create table dadkid1 (like dad INCLUDING STORAGE);
CREATE TABLE
testdb=# \d+ dadkid1
Table "public.dadkid1"
Column | Type | Collation | Nullable | Default | Storage | Stats target | Description
--------+------+-----------+----------+---------+----------+--------------+-------------
foo | text | | | | extended | |
Am I doing something wrong here?Thanks in advance.
Regards,Milen Blagojevic
-- Achilleas Mantzios IT DEV Lead IT DEPT Dynacom Tankers Mgmt
В списке pgsql-general по дате отправления: