diff options
author | Amit Kapila <akapila@postgresql.org> | 2020-06-11 14:10:43 +0530 |
---|---|---|
committer | Amit Kapila <akapila@postgresql.org> | 2020-06-11 15:14:09 +0530 |
commit | ad9291f5e6f81ebca978c4438a1c7a448ca5b9ad (patch) | |
tree | 4351ff4d84895b4f50b025aa90a3b2c603d915af /src | |
parent | 3fbd4bb6f494dd70cc5075536a754261853de167 (diff) | |
download | postgresql-ad9291f5e6f81ebca978c4438a1c7a448ca5b9ad.tar.gz postgresql-ad9291f5e6f81ebca978c4438a1c7a448ca5b9ad.zip |
Fix typos.
Reported-by: John Naylor
Author: John Naylor
Backpatch-through: 9.5
Discussion: https://postgr.es/m/CACPNZCtRuvs6G+EYqejhVJgBq2AKeZdXRVJsbX4syhO9gn5SNQ@mail.gmail.com
Diffstat (limited to 'src')
-rw-r--r-- | src/test/regress/input/largeobject.source | 2 | ||||
-rw-r--r-- | src/test/regress/output/largeobject.source | 2 | ||||
-rw-r--r-- | src/test/regress/output/largeobject_1.source | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/test/regress/input/largeobject.source b/src/test/regress/input/largeobject.source index f40338ddf88..ff42697d112 100644 --- a/src/test/regress/input/largeobject.source +++ b/src/test/regress/input/largeobject.source @@ -180,7 +180,7 @@ UPDATE lotest_stash_values SET fd=lo_open(loid, CAST(x'20000' | x'40000' AS inte -- verify length of large object SELECT lo_lseek(fd, 0, 2) FROM lotest_stash_values; --- with the default BLKSZ, LOBLKSZ = 2048, so this positions us for a block +-- with the default BLCKSZ, LOBLKSIZE = 2048, so this positions us for a block -- edge case SELECT lo_lseek(fd, 2030, 0) FROM lotest_stash_values; diff --git a/src/test/regress/output/largeobject.source b/src/test/regress/output/largeobject.source index ea712a5e2fd..91090f0fde4 100644 --- a/src/test/regress/output/largeobject.source +++ b/src/test/regress/output/largeobject.source @@ -326,7 +326,7 @@ SELECT lo_lseek(fd, 0, 2) FROM lotest_stash_values; 670800 (1 row) --- with the default BLKSZ, LOBLKSZ = 2048, so this positions us for a block +-- with the default BLCKSZ, LOBLKSIZE = 2048, so this positions us for a block -- edge case SELECT lo_lseek(fd, 2030, 0) FROM lotest_stash_values; lo_lseek diff --git a/src/test/regress/output/largeobject_1.source b/src/test/regress/output/largeobject_1.source index f01596cea7b..ec01f3e4784 100644 --- a/src/test/regress/output/largeobject_1.source +++ b/src/test/regress/output/largeobject_1.source @@ -326,7 +326,7 @@ SELECT lo_lseek(fd, 0, 2) FROM lotest_stash_values; 680800 (1 row) --- with the default BLKSZ, LOBLKSZ = 2048, so this positions us for a block +-- with the default BLCKSZ, LOBLKSIZE = 2048, so this positions us for a block -- edge case SELECT lo_lseek(fd, 2030, 0) FROM lotest_stash_values; lo_lseek |