mirror of
https://github.com/postgres/postgres.git
synced 2025-07-08 11:42:09 +03:00
Add missing ObjectIdGetDatum() in syscache lookup calls for Oids
Based on how postgres.h foes the Oid <-> Datum conversion, there is no existing bugs but let's be consistent. 17 spots have been noticed as incorrectly passing down Oids rather than Datums. Aleksander got one, Zhang two and I the rest. Author: Michael Paquier, Aleksander Alekseev, Zhang Mingli Discussion: https://postgr.es/m/ZLUhqsqQN1MOaxdw@paquier.xyz
This commit is contained in:
@ -1718,7 +1718,7 @@ sequence_options(Oid relid)
|
||||
Form_pg_sequence pgsform;
|
||||
List *options = NIL;
|
||||
|
||||
pgstuple = SearchSysCache1(SEQRELID, relid);
|
||||
pgstuple = SearchSysCache1(SEQRELID, ObjectIdGetDatum(relid));
|
||||
if (!HeapTupleIsValid(pgstuple))
|
||||
elog(ERROR, "cache lookup failed for sequence %u", relid);
|
||||
pgsform = (Form_pg_sequence) GETSTRUCT(pgstuple);
|
||||
@ -1766,7 +1766,7 @@ pg_sequence_parameters(PG_FUNCTION_ARGS)
|
||||
|
||||
memset(isnull, 0, sizeof(isnull));
|
||||
|
||||
pgstuple = SearchSysCache1(SEQRELID, relid);
|
||||
pgstuple = SearchSysCache1(SEQRELID, ObjectIdGetDatum(relid));
|
||||
if (!HeapTupleIsValid(pgstuple))
|
||||
elog(ERROR, "cache lookup failed for sequence %u", relid);
|
||||
pgsform = (Form_pg_sequence) GETSTRUCT(pgstuple);
|
||||
|
Reference in New Issue
Block a user