File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 85
85
86
86
-- Test truncation.
87
87
BEGIN;
88
- UPDATE lotest_stash_values SET fd=lo_open(loid, CAST((2 | 4) * 16^4 AS integer));
88
+ UPDATE lotest_stash_values SET fd=lo_open(loid, CAST(x'20000' | x'40000' AS integer));
89
89
90
90
SELECT lo_truncate(fd, 10) FROM lotest_stash_values;
91
91
SELECT loread(fd, 15) FROM lotest_stash_values;
Original file line number Diff line number Diff line change @@ -118,7 +118,7 @@ SELECT lo_close(fd) FROM lotest_stash_values;
118
118
END;
119
119
-- Test truncation.
120
120
BEGIN;
121
- UPDATE lotest_stash_values SET fd=lo_open(loid, CAST((2 | 4) * 16^4 AS integer));
121
+ UPDATE lotest_stash_values SET fd=lo_open(loid, CAST(x'20000' | x'40000' AS integer));
122
122
SELECT lo_truncate(fd, 10) FROM lotest_stash_values;
123
123
lo_truncate
124
124
-------------
You can’t perform that action at this time.
0 commit comments