Skip to content

Commit

Permalink
Suppress compiler warnings in release build. (#674)
Browse files Browse the repository at this point in the history
Fix minor compiler complain
  • Loading branch information
reshke authored Oct 18, 2024
1 parent cc18945 commit 10c6841
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/backend/access/aocs/aocsam.c
Original file line number Diff line number Diff line change
Expand Up @@ -1140,7 +1140,7 @@ aocs_insert_values(AOCSInsertDesc idesc, Datum *d, bool *null, AOTupleId *aoTupl
*/
if (idesc->numSequences == 0)
{
int64 firstSequence;
int64 firstSequence PG_USED_FOR_ASSERTS_ONLY;

firstSequence =
GetFastSequences(idesc->segrelid,
Expand Down

0 comments on commit 10c6841

Please sign in to comment.