diff options
author | Kevin Grittner <kgrittn@postgresql.org> | 2014-08-05 14:17:21 -0500 |
---|---|---|
committer | Kevin Grittner <kgrittn@postgresql.org> | 2014-08-05 14:17:21 -0500 |
commit | 49d1e03d64f36a345c92901c4d13bf683f99eeec (patch) | |
tree | 6821ce33a92c90cde7925d2cbb0cf64d7e7f3134 /src/backend/executor/execScan.c | |
parent | 0ef99bdce3a6cd3195d7df12093042c16328c71c (diff) | |
download | postgresql-49d1e03d64f36a345c92901c4d13bf683f99eeec.tar.gz postgresql-49d1e03d64f36a345c92901c4d13bf683f99eeec.zip |
Fix typo in C comment.
Diffstat (limited to 'src/backend/executor/execScan.c')
-rw-r--r-- | src/backend/executor/execScan.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/executor/execScan.c b/src/backend/executor/execScan.c index 869abbecbd8..13195194fa4 100644 --- a/src/backend/executor/execScan.c +++ b/src/backend/executor/execScan.c @@ -88,7 +88,7 @@ ExecScanFetch(ScanState *node, * Scans the relation using the 'access method' indicated and * returns the next qualifying tuple in the direction specified * in the global variable ExecDirection. - * The access method returns the next tuple and execScan() is + * The access method returns the next tuple and ExecScan() is * responsible for checking the tuple returned against the qual-clause. * * A 'recheck method' must also be provided that can check an |