diff options
author | Heikki Linnakangas <heikki.linnakangas@iki.fi> | 2017-06-21 11:55:07 +0300 |
---|---|---|
committer | Heikki Linnakangas <heikki.linnakangas@iki.fi> | 2017-06-21 11:55:07 +0300 |
commit | ba1f017069dd87d309e2716bf08a40df42b29baa (patch) | |
tree | 19ac202299005935c502acf561be6352523f0cab /src | |
parent | d412f79381935186dc8f95fd2dc30227a82f012f (diff) | |
download | postgresql-ba1f017069dd87d309e2716bf08a40df42b29baa.tar.gz postgresql-ba1f017069dd87d309e2716bf08a40df42b29baa.zip |
Fix typo in comment.
Etsuro Fujita
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/executor/execMain.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/executor/execMain.c b/src/backend/executor/execMain.c index 7f460bd1a74..9dbe17565b4 100644 --- a/src/backend/executor/execMain.c +++ b/src/backend/executor/execMain.c @@ -2093,8 +2093,8 @@ ExecWithCheckOptions(WCOKind kind, ResultRelInfo *resultRelInfo, * the permissions on the relation (that is, if the user * could view it directly anyway). For RLS violations, we * don't include the data since we don't know if the user - * should be able to view the tuple as as that depends on - * the USING policy. + * should be able to view the tuple as that depends on the + * USING policy. */ case WCO_VIEW_CHECK: insertedCols = GetInsertedColumns(resultRelInfo, estate); |