[BUGS] BUG #14666: Question on money type as the key of partitioned table - Mailing list pgsql-bugs

From tianbing@highgo.com
Subject [BUGS] BUG #14666: Question on money type as the key of partitioned table
Date
Msg-id 20170524024550.29935.14396@wrigleys.postgresql.org
Whole thread Raw
Responses Re: [BUGS] BUG #14666: Question on money type as the key ofpartitioned table  (Michael Paquier <michael.paquier@gmail.com>)
Re: [BUGS] BUG #14666: Question on money type as the key of partitioned table  (Tom Lane <tgl@sss.pgh.pa.us>)
List pgsql-bugs
The following bug has been logged on the website:

Bug reference:      14666
Logged by:          tian bing
Email address:      tianbing@highgo.com
PostgreSQL version: 10beta1
Operating system:   CentOS 6.4(64bits)
Description:

Hi,
When I use the money type as the key to create the partition table as
follows:

postgres=# create table test(m money) partition by list(m);
CREATE TABLE
postgres=# create table test_1 partition of test for values in (10);
CREATE TABLE

Partition bounds without apostrophe can be createed, but it store the null
value,not '10' value.

In fact, Correct grammar for creating partition is with apostrophe like
this:
postgres=# create table test_1 partition of test for values in ('10');

But the first creating partition without apostrophe should report an error
like "ERROR:  operator does not exist: money = integer"  as adding a check
constraint.

Looking forward to your reply.


--
Sent via pgsql-bugs mailing list (pgsql-bugs@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-bugs

pgsql-bugs by date:

Previous
From: Justin Muise
Date:
Subject: Re: [BUGS] BUG #14662: 'has_table_privilege()' function fails witherror, "invalid name syntax" when using Japanese symbols
Next
From: Robert Haas
Date:
Subject: Re: [HACKERS] [BUGS] Concurrent ALTER SEQUENCE RESTART Regression