aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2001-11-20 22:22:24 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2001-11-20 22:22:24 +0000
commite1c0bc1b26028dfefd1e65fc80d191d93a47edbe (patch)
treee51d17cd6631634fafd50573487fdc103be51303 /src
parentc78975f8456c4051e5a6b4bb286db78b0207705a (diff)
downloadpostgresql-e1c0bc1b26028dfefd1e65fc80d191d93a47edbe.tar.gz
postgresql-e1c0bc1b26028dfefd1e65fc80d191d93a47edbe.zip
Bruce's octet_length change breaks this regression test.
Diffstat (limited to 'src')
-rw-r--r--src/test/regress/output/misc.source2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/regress/output/misc.source b/src/test/regress/output/misc.source
index 18444115d69..e3a5109a02c 100644
--- a/src/test/regress/output/misc.source
+++ b/src/test/regress/output/misc.source
@@ -679,7 +679,7 @@ select i, length(t), octet_length(t), oldstyle_length(i,t) from oldstyle_test;
| | |
0 | 2 | 2 | 2
1000 | 2 | 2 | 1002
- 0 | 50000 | 581 | 50000
+ 0 | 50000 | 50000 | 50000
(4 rows)
drop table oldstyle_test;