Re: [Proposal] Global temporary tables

From: Prabhat Sahu <prabhat(dot)sahu(at)enterprisedb(dot)com>
To: 曾文旌(义从) <wenjing(dot)zwj(at)alibaba-inc(dot)com>
Cc: tushar <tushar(dot)ahuja(at)enterprisedb(dot)com>, Pavel Stehule <pavel(dot)stehule(at)gmail(dot)com>, Robert Haas <robertmhaas(at)gmail(dot)com>, Tomas Vondra <tomas(dot)vondra(at)2ndquadrant(dot)com>, Konstantin Knizhnik <k(dot)knizhnik(at)postgrespro(dot)ru>, PostgreSQL Hackers <pgsql-hackers(at)postgresql(dot)org>, 蔡松露(子嘉) <zijia(at)taobao(dot)com>, "Cai, Le" <le(dot)cai(at)alibaba-inc(dot)com>, 萧少聪(铁庵) <shaocong(dot)xsc(at)alibaba-inc(dot)com>
Subject: Re: [Proposal] Global temporary tables
Date: 2020-03-04 07:49:13
Message-ID: CANEvxPpYg20zHbj0aLycD8SGddDYhFNMfUhCsBRXM-dQYvhM5Q@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

On Tue, Mar 3, 2020 at 2:11 PM 曾文旌(义从) <wenjing(dot)zwj(at)alibaba-inc(dot)com> wrote:

>
>
>
> I fixed in global_temporary_table_v16-pg13.patch.
>

Thank you Wenjing for the patch.
Now we are getting corruption with GTT with below scenario.

postgres=# CREATE GLOBAL TEMPORARY TABLE gtt1(c1 bigint, c2 bigserial) on
commit delete rows;
CREATE TABLE
postgres=# CREATE GLOBAL TEMPORARY TABLE gtt2(c1 bigint, c2 bigserial) on
commit preserve rows;
CREATE TABLE
postgres=# \q

[edb(at)localhost bin]$ echo "1
> 2
> 3
> "> t.dat

[edb(at)localhost bin]$ ./psql postgres
psql (13devel)
Type "help" for help.

postgres=# \copy gtt1(c1) from 't.dat' with csv;
ERROR: could not read block 0 in file "base/13585/t3_16384": read only 0
of 8192 bytes
CONTEXT: COPY gtt1, line 1: "1"

postgres=# \copy gtt2(c1) from 't.dat' with csv;
ERROR: could not read block 0 in file "base/13585/t3_16390": read only 0
of 8192 bytes
CONTEXT: COPY gtt2, line 1: "1"

NOTE: We end with such corruption for "bigserial/smallserial/serial"
datatype columns.

--

With Regards,
Prabhat Kumar Sahu
EnterpriseDB: http://www.enterprisedb.com

In response to

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Michael Paquier 2020-03-04 07:54:18 PG_COLOR not mentioned in docs of vacuumlo, oid2name and pgbench
Previous Message Michael Paquier 2020-03-04 07:45:55 Re: [Patch] pg_rewind: options to use restore_command from recovery.conf or command line