mirror of
https://github.com/postgres/postgres.git
synced 2025-06-14 18:42:34 +03:00
Silence compiler warnings about possibly unset variables.
They are in fact set in every case where they are needed, but the compiler doesn't know that. Per gripe from Tom Lane.
This commit is contained in:
@ -1283,8 +1283,8 @@ populate_record_worker(PG_FUNCTION_ARGS, bool have_record_arg)
|
|||||||
bool use_json_as_text;
|
bool use_json_as_text;
|
||||||
HTAB *json_hash;
|
HTAB *json_hash;
|
||||||
HeapTupleHeader rec = NULL;
|
HeapTupleHeader rec = NULL;
|
||||||
Oid tupType;
|
Oid tupType = InvalidOid;
|
||||||
int32 tupTypmod;
|
int32 tupTypmod = -1;
|
||||||
TupleDesc tupdesc;
|
TupleDesc tupdesc;
|
||||||
HeapTupleData tuple;
|
HeapTupleData tuple;
|
||||||
HeapTuple rettuple;
|
HeapTuple rettuple;
|
||||||
|
Reference in New Issue
Block a user