From: Magnus Hagander Date: Wed, 19 Jun 2019 12:59:26 +0000 (+0200) Subject: Fix typo X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=66013fe73095f851c151a17ccc7553abe6246891;p=users%2Frhaas%2Fpostgres.git Fix typo Author: Daniel Gustafsson --- 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);