summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMagnus Hagander2019-06-19 12:59:26 +0000
committerMagnus Hagander2019-06-19 12:59:26 +0000
commit66013fe73095f851c151a17ccc7553abe6246891 (patch)
tree0505f90756943d1e6134c582ab8d3d5dac53296e
parent992fe54e77f66ed67b6480fcf7dd208b2cd28aac (diff)
Fix typo
Author: Daniel Gustafsson
-rw-r--r--src/backend/access/table/tableamapi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/access/table/tableamapi.c b/src/backend/access/table/tableamapi.c
index fdd7e64ada..b2f5876810 100644
--- a/src/backend/access/table/tableamapi.c
+++ b/src/backend/access/table/tableamapi.c
@@ -92,7 +92,7 @@ GetTableAmRoutine(Oid amhandler)
Assert(routine->relation_estimate_size != NULL);
- /* optional, but one callback implies presence of hte other */
+ /* optional, but one callback implies presence of the other */
Assert((routine->scan_bitmap_next_block == NULL) ==
(routine->scan_bitmap_next_tuple == NULL));
Assert(routine->scan_sample_next_block != NULL);