We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent9476131 commit2550448Copy full SHA for 2550448
src/backend/executor/execTuples.c
@@ -136,7 +136,7 @@ tts_virtual_getsomeattrs(TupleTableSlot *slot, int natts)
136
staticDatum
137
tts_virtual_getsysattr(TupleTableSlot*slot,intattnum,bool*isnull)
138
{
139
-elog(ERROR,"virtual tuple table slot does not have systematttributes");
+elog(ERROR,"virtual tuple table slot does not have systemattributes");
140
141
return0;/* silence compiler warnings */
142
}
@@ -497,7 +497,7 @@ tts_minimal_getsomeattrs(TupleTableSlot *slot, int natts)
497
498
tts_minimal_getsysattr(TupleTableSlot*slot,intattnum,bool*isnull)
499
500
-elog(ERROR,"minimal tuple table slot does not have systematttributes");
+elog(ERROR,"minimal tuple table slot does not have systemattributes");
501
502
503