diff options
author | Michael Paquier <michael@paquier.xyz> | 2024-01-16 09:17:51 +0900 |
---|---|---|
committer | Michael Paquier <michael@paquier.xyz> | 2024-01-16 09:17:51 +0900 |
commit | 83eb244e419efd43959fdd544ff8c30e175565ef (patch) | |
tree | 87828a9d9c15339a4d7c78161b4bb6c815884c75 /src | |
parent | 237d01139b8a2ad26036d9025ae8e8e99b53e08c (diff) | |
download | postgresql-83eb244e419efd43959fdd544ff8c30e175565ef.tar.gz postgresql-83eb244e419efd43959fdd544ff8c30e175565ef.zip |
Fix a typo and some doc indentation related to libpq pipeline functions
Noticed while reviewing the area for a different patch. This is
cosmetic, so no backpatch is done.
Diffstat (limited to 'src')
-rw-r--r-- | src/interfaces/libpq/fe-exec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interfaces/libpq/fe-exec.c b/src/interfaces/libpq/fe-exec.c index 106d14e6eed..e1768d5475d 100644 --- a/src/interfaces/libpq/fe-exec.c +++ b/src/interfaces/libpq/fe-exec.c @@ -3235,7 +3235,7 @@ pqPipelineProcessQueue(PGconn *conn) * error, a PGresult with PGRES_PIPELINE_SYNC is produced. * * Queries can already have been sent before PQpipelineSync is called, but - * PQpipelineSync need to be called before retrieving command results. + * PQpipelineSync needs to be called before retrieving command results. * * The connection will remain in pipeline mode and unavailable for new * synchronous command execution functions until all results from the pipeline |