Hi hackers,
Recently, we encounter an issue that if the database grant too many roles that
`datacl` toasted, vacuum freeze will fail with error "wrong tuple length".
To reproduce the issue, please follow below steps:
CREATE DATABASE vacuum_freeze_test;
-- create helper function
create or replac
Hi hackers,
Can anyone help to verify this?
Hi hackers,
As described in the doc https://www.postgresql.org/docs/current/sql-copy.html,
the TEXT format recognizes
backslash-period (\.) as end-of-data marker.
The example below will raise an error for the line contains `\.`.
CREATE TABLE test (
id int,
name text,
dep text
)
Data in file "/
Thanks for all your feedbacks!
Hi hackers,
As I played with the partitioned table with GRANT, I found two questions.
Let's see an example:
CREATE TABLE measurement (
city_id int not null,
logdate date not null,
peaktempint,
unitsales int
) PARTITION BY RANGE (logdate);
CREATE TAB
I see. Thanks for your explanation!