mirror of https://github.com/citusdata/citus.git
Removes oid support
parent
fe24227638
commit
30e1a858d2
|
@ -259,7 +259,7 @@ DeparseAlterDatabaseSetStmt(Node *node)
|
||||||
static void
|
static void
|
||||||
ValidateCreateDatabaseOptions(DefElem *option)
|
ValidateCreateDatabaseOptions(DefElem *option)
|
||||||
{
|
{
|
||||||
if (strcmp(option->defname, "strategy") == 0)
|
if (strcmp(option->defname, "strategy") == 0 || strcmp(option->defname, "oid") == 0)
|
||||||
{
|
{
|
||||||
ereport(ERROR,
|
ereport(ERROR,
|
||||||
errmsg("CREATE DATABASE option \"%s\" is not supported",
|
errmsg("CREATE DATABASE option \"%s\" is not supported",
|
||||||
|
|
Loading…
Reference in New Issue