Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4da597e commit 7361612Copy full SHA for 7361612
src/backend/executor/execTuples.c
@@ -132,6 +132,8 @@ static Datum
132
tts_virtual_getsysattr(TupleTableSlot *slot, int attnum, bool *isnull)
133
{
134
elog(ERROR, "virtual tuple table slot does not have system atttributes");
135
+
136
+ return 0; /* silence compiler warnings */
137
}
138
139
/*
@@ -488,6 +490,8 @@ static Datum
488
490
tts_minimal_getsysattr(TupleTableSlot *slot, int attnum, bool *isnull)
489
491
492
elog(ERROR, "minimal tuple table slot does not have system atttributes");
493
494
495
496
497
static void
0 commit comments