File tree 3 files changed +6
-6
lines changed
3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -50,8 +50,8 @@ INSERT INTO lotest_stash_values (loid) SELECT lo_creat(42);
50
50
BEGIN;
51
51
-- lo_open(lobjId oid, mode integer) returns integer
52
52
-- The mode parameter to lo_open uses two constants:
53
- -- INV_READ = 0x20000
54
- -- INV_WRITE = 0x40000
53
+ -- INV_WRITE = 0x20000
54
+ -- INV_READ = 0x40000
55
55
-- The return value is a file descriptor-like value which remains valid for the
56
56
-- transaction.
57
57
UPDATE lotest_stash_values SET fd = lo_open(loid, CAST(x'20000' | x'40000' AS integer));
Original file line number Diff line number Diff line change @@ -50,8 +50,8 @@ INSERT INTO lotest_stash_values (loid) SELECT lo_creat(42);
50
50
BEGIN;
51
51
-- lo_open(lobjId oid, mode integer) returns integer
52
52
-- The mode parameter to lo_open uses two constants:
53
- -- INV_READ = 0x20000
54
- -- INV_WRITE = 0x40000
53
+ -- INV_WRITE = 0x20000
54
+ -- INV_READ = 0x40000
55
55
-- The return value is a file descriptor-like value which remains valid for the
56
56
-- transaction.
57
57
UPDATE lotest_stash_values SET fd = lo_open(loid, CAST(x'20000' | x'40000' AS integer));
Original file line number Diff line number Diff line change 34
34
35
35
-- lo_open(lobjId oid, mode integer) returns integer
36
36
-- The mode parameter to lo_open uses two constants:
37
- -- INV_READ = 0x20000
38
- -- INV_WRITE = 0x40000
37
+ -- INV_WRITE = 0x20000
38
+ -- INV_READ = 0x40000
39
39
-- The return value is a file descriptor-like value which remains valid for the
40
40
-- transaction.
41
41
UPDATE lotest_stash_values SET fd = lo_open(loid, CAST(x' 20000' | x' 40000' AS integer ));
You can’t perform that action at this time.
0 commit comments