Commit ac445955 authored by Robert Haas's avatar Robert Haas

Move PG_USED_FOR_ASSERTS_ONLY before initializer.

Erik Rijkers reported a compile failure, and I think this is probably
the reason.
parent 7a1527c0
......@@ -2058,7 +2058,7 @@ compile_relation_list_one_db(PGconn *conn, SimplePtrList *relations,
{
int pattern_id = -1;
bool is_heap = false;
bool is_btree = false PG_USED_FOR_ASSERTS_ONLY;
bool is_btree PG_USED_FOR_ASSERTS_ONLY = false;
Oid oid = InvalidOid;
const char *nspname = NULL;
const char *relname = NULL;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment