At Wed, 29 Mar 2017 17:21:26 +0900, Amit Langote <langote_amit...@lab.ntt.co.jp> wrote in <b1234f04-53e0-011d-9f02-2437b909c...@lab.ntt.co.jp> > > Thanks for taking a look.
This patch is small enough to look at in a short time:p > > The following attracted my eyes. > > > > + if (def->defnamespace == NULL && > > + pg_strcasecmp(def->defname, "oids") != 0) > > + ereport(ERROR, > > + (errcode(ERRCODE_INVALID_PARAMETER_VALUE), > > + errmsg("unrecognized parameter \"%s\" for a partitioned table", > > > > This works since defnamespace is always NULL here, but if I > > understand correctly what we should do here is "reject any option > > other than "(default).OID"". So I think that the condition should > > be like the following. > > You're right. The following *wrongly* succeeds: Ouch! I briefly checked that by "hoge.oids" without confirming around. > create table p (a int) partition by list (a) with > (toast.autovacuum_enabled = true); > CREATE TABLE > > > + if (def->defnamespace != NULL || > > + pg_strcasecmp(def->defname, "oids") != 0) > > Looks correct, so incorporated in the attached updated patch. Thanks. -- Kyotaro Horiguchi NTT Open Source Software Center -- Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-hackers