pgsql: Don't allow CREATE TABLE AS to create a column with invalid coll

From: Peter Eisentraut <peter_e(at)gmx(dot)net>
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Don't allow CREATE TABLE AS to create a column with invalid coll
Date: 2011-03-04 21:43:03
Message-ID: E1Pvcm7-0004lC-R8@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Don't allow CREATE TABLE AS to create a column with invalid collation

It is possible that an expression ends up with a collatable type but
without a collation. CREATE TABLE AS could then create a table based
on that. But such a column cannot be dumped with valid SQL syntax, so
we disallow creating such a column.

per test report from Noah Misch

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/b9cff97fdf486eca7e563a9696a7391048814d0f

Modified Files
--------------
src/backend/catalog/heap.c | 17 +++++++++++++++--
src/backend/catalog/index.c | 8 +++++---
src/backend/commands/tablecmds.c | 4 ++--
src/include/catalog/heap.h | 2 +-
src/test/regress/expected/collate.linux.utf8.out | 3 +++
src/test/regress/sql/collate.linux.utf8.sql | 2 ++
6 files changed, 28 insertions(+), 8 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Robert Haas 2011-03-04 22:28:36 pgsql: Refactor seclabel.c to use the new check_object_ownership functi
Previous Message Tom Lane 2011-03-04 21:09:07 pgsql: Allow non-superusers to create (some) extensions.