|
| 1 | +-- |
| 2 | +-- Test large object support |
| 3 | +-- |
| 4 | +-- Load a file |
| 5 | +CREATE TABLE lotest_stash_values (loid oid, fd integer); |
| 6 | +-- lo_creat(mode integer) returns oid |
| 7 | +-- The mode arg to lo_creat is unused, some vestigal holdover from ancient times |
| 8 | +-- returns the large object id |
| 9 | +INSERT INTO lotest_stash_values (loid) SELECT lo_creat(42); |
| 10 | +-- NOTE: large objects require transactions |
| 11 | +BEGIN; |
| 12 | +-- lo_open(lobjId oid, mode integer) returns integer |
| 13 | +-- The mode parameter to lo_open uses two constants: |
| 14 | +-- INV_READ = 0x20000 = 2 * 16^4 |
| 15 | +-- INV_WRITE = 0x40000 = 4 * 16^4 |
| 16 | +-- The return value is a file descriptor-like value which remains valid for the |
| 17 | +-- transaction. |
| 18 | +UPDATE lotest_stash_values SET fd = lo_open(loid, CAST((2 | 4) * 16^4 AS integer)); |
| 19 | +-- loread/lowrite names are wonky, different from other functions which are lo_* |
| 20 | +-- lowrite(fd integer, data bytea) returns integer |
| 21 | +-- the integer is the number of bytes written |
| 22 | +SELECT lowrite(fd, ' |
| 23 | +Whose woods these are I think I know, |
| 24 | +His house is in the village though. |
| 25 | +He will not see me stopping here, |
| 26 | +To watch his woods fill up with snow. |
| 27 | + |
| 28 | +My little horse must think it queer, |
| 29 | +To stop without a farmhouse near, |
| 30 | +Between the woods and frozen lake, |
| 31 | +The darkest evening of the year. |
| 32 | + |
| 33 | +He gives his harness bells a shake, |
| 34 | +To ask if there is some mistake. |
| 35 | +The only other sound''s the sweep, |
| 36 | +Of easy wind and downy flake. |
| 37 | + |
| 38 | +The woods are lovely, dark and deep, |
| 39 | +But I have promises to keep, |
| 40 | +And miles to go before I sleep, |
| 41 | +And miles to go before I sleep. |
| 42 | + |
| 43 | + -- Robert Frost |
| 44 | +') FROM lotest_stash_values; |
| 45 | + lowrite |
| 46 | +--------- |
| 47 | + 578 |
| 48 | +(1 row) |
| 49 | + |
| 50 | +-- lo_close(fd integer) returns integer |
| 51 | +-- return value is 0 for success, or <0 for error (actually only -1, but...) |
| 52 | +SELECT lo_close(fd) FROM lotest_stash_values; |
| 53 | + lo_close |
| 54 | +---------- |
| 55 | + 0 |
| 56 | +(1 row) |
| 57 | + |
| 58 | +END; |
| 59 | +-- Read out a portion |
| 60 | +BEGIN; |
| 61 | +UPDATE lotest_stash_values SET fd=lo_open(loid, CAST((2 | 4) * 16^4 AS integer)); |
| 62 | +-- lo_lseek(fd integer, offset integer, whence integer) returns integer |
| 63 | +-- offset is in bytes, whence is one of three values: |
| 64 | +-- SEEK_SET (= 0) meaning relative to beginning |
| 65 | +-- SEEK_CUR (= 1) meaning relative to current position |
| 66 | +-- SEEK_END (= 2) meaning relative to end (offset better be negative) |
| 67 | +-- returns current position in file |
| 68 | +SELECT lo_lseek(fd, 422, 0) FROM lotest_stash_values; |
| 69 | + lo_lseek |
| 70 | +---------- |
| 71 | + 422 |
| 72 | +(1 row) |
| 73 | + |
| 74 | +-- loread/lowrite names are wonky, different from other functions which are lo_* |
| 75 | +-- loread(fd integer, len integer) returns bytea |
| 76 | +SELECT loread(fd, 35) FROM lotest_stash_values; |
| 77 | + loread |
| 78 | +------------------------------------- |
| 79 | + The woods are lovely, dark and deep |
| 80 | +(1 row) |
| 81 | + |
| 82 | +SELECT lo_lseek(fd, -19, 1) FROM lotest_stash_values; |
| 83 | + lo_lseek |
| 84 | +---------- |
| 85 | + 438 |
| 86 | +(1 row) |
| 87 | + |
| 88 | +SELECT lowrite(fd, 'n') FROM lotest_stash_values; |
| 89 | + lowrite |
| 90 | +--------- |
| 91 | + 1 |
| 92 | +(1 row) |
| 93 | + |
| 94 | +SELECT lo_tell(fd) FROM lotest_stash_values; |
| 95 | + lo_tell |
| 96 | +--------- |
| 97 | + 439 |
| 98 | +(1 row) |
| 99 | + |
| 100 | +SELECT lo_lseek(fd, -156, 2) FROM lotest_stash_values; |
| 101 | + lo_lseek |
| 102 | +---------- |
| 103 | + 422 |
| 104 | +(1 row) |
| 105 | + |
| 106 | +SELECT loread(fd, 35) FROM lotest_stash_values; |
| 107 | + loread |
| 108 | +------------------------------------- |
| 109 | + The woods are lonely, dark and deep |
| 110 | +(1 row) |
| 111 | + |
| 112 | +SELECT lo_close(fd) FROM lotest_stash_values; |
| 113 | + lo_close |
| 114 | +---------- |
| 115 | + 0 |
| 116 | +(1 row) |
| 117 | + |
| 118 | +END; |
| 119 | +-- lo_unlink(lobjId oid) returns integer |
| 120 | +-- return value appears to always be 1 |
| 121 | +SELECT lo_unlink(loid) from lotest_stash_values; |
| 122 | + lo_unlink |
| 123 | +----------- |
| 124 | + 1 |
| 125 | +(1 row) |
| 126 | + |
| 127 | +TRUNCATE lotest_stash_values; |
| 128 | +INSERT INTO lotest_stash_values (loid) SELECT lo_import('@abs_srcdir@/data/tenk.data'); |
| 129 | +BEGIN; |
| 130 | +UPDATE lotest_stash_values SET fd=lo_open(loid, CAST((2 | 4) * 16^4 AS integer)); |
| 131 | +-- with the default BLKSZ, LOBLKSZ = 2048, so this positions us for a block |
| 132 | +-- edge case |
| 133 | +SELECT lo_lseek(fd, 2030, 0) FROM lotest_stash_values; |
| 134 | + lo_lseek |
| 135 | +---------- |
| 136 | + 2030 |
| 137 | +(1 row) |
| 138 | + |
| 139 | +-- this should get half of the value from page 0 and half from page 1 of the |
| 140 | +-- large object |
| 141 | +SELECT loread(fd, 36) FROM lotest_stash_values; |
| 142 | + loread |
| 143 | +----------------------------------------------------------------- |
| 144 | + AAA\011FBAAAA\011VVVVxx\0122513\01132\0111\0111\0113\01113\0111 |
| 145 | +(1 row) |
| 146 | + |
| 147 | +SELECT lo_tell(fd) FROM lotest_stash_values; |
| 148 | + lo_tell |
| 149 | +--------- |
| 150 | + 2066 |
| 151 | +(1 row) |
| 152 | + |
| 153 | +SELECT lo_lseek(fd, -26, 1) FROM lotest_stash_values; |
| 154 | + lo_lseek |
| 155 | +---------- |
| 156 | + 2040 |
| 157 | +(1 row) |
| 158 | + |
| 159 | +SELECT lowrite(fd, 'abcdefghijklmnop') FROM lotest_stash_values; |
| 160 | + lowrite |
| 161 | +--------- |
| 162 | + 16 |
| 163 | +(1 row) |
| 164 | + |
| 165 | +SELECT lo_lseek(fd, 2030, 0) FROM lotest_stash_values; |
| 166 | + lo_lseek |
| 167 | +---------- |
| 168 | + 2030 |
| 169 | +(1 row) |
| 170 | + |
| 171 | +SELECT loread(fd, 36) FROM lotest_stash_values; |
| 172 | + loread |
| 173 | +----------------------------------------------------- |
| 174 | + AAA\011FBAAAAabcdefghijklmnop1\0111\0113\01113\0111 |
| 175 | +(1 row) |
| 176 | + |
| 177 | +SELECT lo_close(fd) FROM lotest_stash_values; |
| 178 | + lo_close |
| 179 | +---------- |
| 180 | + 0 |
| 181 | +(1 row) |
| 182 | + |
| 183 | +END; |
| 184 | +SELECT lo_export(loid, '@abs_builddir@/results/lotest.txt') FROM lotest_stash_values; |
| 185 | + lo_export |
| 186 | +----------- |
| 187 | + 1 |
| 188 | +(1 row) |
| 189 | + |
| 190 | +\lo_import 'results/lotest.txt' |
| 191 | +\set newloid :LASTOID |
| 192 | +-- just make sure \lo_export does not barf |
| 193 | +\lo_export :newloid 'results/lotest2.txt' |
| 194 | +-- This is a hack to test that export/import are reversible |
| 195 | +-- This uses knowledge about the inner workings of large object mechanism |
| 196 | +-- which should not be used outside it. This makes it a HACK |
| 197 | +SELECT pageno, data FROM pg_largeobject WHERE loid = (SELECT loid from lotest_stash_values) |
| 198 | +EXCEPT |
| 199 | +SELECT pageno, data FROM pg_largeobject WHERE loid = :newloid; |
| 200 | + pageno | data |
| 201 | +--------+------ |
| 202 | +(0 rows) |
| 203 | + |
| 204 | +SELECT lo_unlink(loid) FROM lotest_stash_values; |
| 205 | + lo_unlink |
| 206 | +----------- |
| 207 | + 1 |
| 208 | +(1 row) |
| 209 | + |
| 210 | +\lo_unlink :newloid |
| 211 | +TRUNCATE lotest_stash_values; |