diff options
author | Thomas Munro <tmunro@postgresql.org> | 2019-04-10 09:21:06 +1200 |
---|---|---|
committer | Thomas Munro <tmunro@postgresql.org> | 2019-04-10 09:21:06 +1200 |
commit | 255044889d419354b46a2bf8907b83507d695af5 (patch) | |
tree | 8bd1c5c7833068e491fb64ddf89f1127cea2e587 | |
parent | 9476131278c7bfc435ad9a21fc8e981272ac0dd2 (diff) | |
download | postgresql-255044889d419354b46a2bf8907b83507d695af5.tar.gz postgresql-255044889d419354b46a2bf8907b83507d695af5.zip |
Fix typos.
-rw-r--r-- | src/backend/executor/execTuples.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/executor/execTuples.c b/src/backend/executor/execTuples.c index 41fa374b6fc..546db02cad0 100644 --- a/src/backend/executor/execTuples.c +++ b/src/backend/executor/execTuples.c @@ -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 */ } |