Fix typos.
authorThomas Munro <tmunro@postgresql.org>
Tue, 9 Apr 2019 21:21:06 +0000 (09:21 +1200)
committerThomas Munro <tmunro@postgresql.org>
Tue, 9 Apr 2019 21:21:06 +0000 (09:21 +1200)
src/backend/executor/execTuples.c

index 41fa374b6fc8294a17d4136bc689907825950972..546db02cad0936aa85f984cab69d5a9c61b593e9 100644 (file)
@@ -136,7 +136,7 @@ tts_virtual_getsomeattrs(TupleTableSlot *slot, int natts)
 static Datum
 tts_virtual_getsysattr(TupleTableSlot *slot, int attnum, bool *isnull)
 {
-       elog(ERROR, "virtual tuple table slot does not have system atttributes");
+       elog(ERROR, "virtual tuple table slot does not have system attributes");
 
        return 0; /* silence compiler warnings */
 }
@@ -497,7 +497,7 @@ tts_minimal_getsomeattrs(TupleTableSlot *slot, int natts)
 static Datum
 tts_minimal_getsysattr(TupleTableSlot *slot, int attnum, bool *isnull)
 {
-       elog(ERROR, "minimal tuple table slot does not have system atttributes");
+       elog(ERROR, "minimal tuple table slot does not have system attributes");
 
        return 0; /* silence compiler warnings */
 }