Fixes compile error

create_drop_db_gh
gindibay 2023-10-09 16:00:18 +03:00
parent 69ccf7dd97
commit 4b4aae2d4a
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ handleOption(StringInfo buf, DefElem *option, const struct option_format *opt_fo
bool value = defGetBoolean(option);
appendStringInfo(buf, opt_formats[i].format, value ? "true" : "false");
}
#if PG_VERSION_NUM >= PG_VERSION_15
#if PG_VERSION_NUM >= 150000
else if (strcmp(opt_formats[i].type, "object_id") == 0)
{
Oid value = defGetObjectId(option);