]> granicus.if.org Git - postgresql/commitdiff
Make the newly-added regression tests for lo_truncate() consistent
authorNeil Conway <neilc@samurai.com>
Sat, 3 Mar 2007 22:57:04 +0000 (22:57 +0000)
committerNeil Conway <neilc@samurai.com>
Sat, 3 Mar 2007 22:57:04 +0000 (22:57 +0000)
with the recent largeobject cosmetic fixes. Jeremy Drake.

src/test/regress/input/largeobject.source
src/test/regress/output/largeobject.source

index c47cee3a6112d3d84eac290741da639d20892567..1d62caa3eaf0488028021a3cf5715ffa6f126d10 100644 (file)
@@ -85,7 +85,7 @@ END;
 
 -- Test truncation.
 BEGIN;
-UPDATE lotest_stash_values SET fd=lo_open(loid, CAST((2 | 4) * 16^4 AS integer));
+UPDATE lotest_stash_values SET fd=lo_open(loid, CAST(x'20000' | x'40000' AS integer));
 
 SELECT lo_truncate(fd, 10) FROM lotest_stash_values;
 SELECT loread(fd, 15) FROM lotest_stash_values;
index 4fd3bc156d1a78aae2d579eba5a842bde770e1d2..36b51fdccddf548437a580591995d5a193236329 100644 (file)
@@ -118,7 +118,7 @@ SELECT lo_close(fd) FROM lotest_stash_values;
 END;
 -- Test truncation.
 BEGIN;
-UPDATE lotest_stash_values SET fd=lo_open(loid, CAST((2 | 4) * 16^4 AS integer));
+UPDATE lotest_stash_values SET fd=lo_open(loid, CAST(x'20000' | x'40000' AS integer));
 SELECT lo_truncate(fd, 10) FROM lotest_stash_values;
  lo_truncate 
 -------------