summaryrefslogtreecommitdiff
path: root/src/test
diff options
context:
space:
mode:
authorTom Lane2003-04-17 22:26:02 +0000
committerTom Lane2003-04-17 22:26:02 +0000
commitcb7fb3ca958ec8bd5a14e740c067f1d096af3454 (patch)
tree3494f623627ebebb9590c0ab993297a719bfe7f2 /src/test
parent76fd678c06b826ae50aac5c4afb2e01e69d2b405 (diff)
First phase of FE/BE protocol modifications: new StartupPacket layout
with variable-width fields. No more truncation of long user names. Also, libpq can now send its environment-variable-driven SET commands as part of the startup packet, saving round trips to server.
Diffstat (limited to 'src/test')
-rw-r--r--src/test/regress/expected/interval.out2
-rw-r--r--src/test/regress/sql/interval.sql2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/test/regress/expected/interval.out b/src/test/regress/expected/interval.out
index ed16ada224f..32120be5412 100644
--- a/src/test/regress/expected/interval.out
+++ b/src/test/regress/expected/interval.out
@@ -1,7 +1,7 @@
--
-- INTERVAL
--
-SET DATESTYLE = DEFAULT;
+SET DATESTYLE = 'ISO';
-- check acceptance of "time zone style"
SELECT INTERVAL '01:00' AS "One hour";
One hour
diff --git a/src/test/regress/sql/interval.sql b/src/test/regress/sql/interval.sql
index aa14cd3b094..b6a6eb20ef3 100644
--- a/src/test/regress/sql/interval.sql
+++ b/src/test/regress/sql/interval.sql
@@ -2,7 +2,7 @@
-- INTERVAL
--
-SET DATESTYLE = DEFAULT;
+SET DATESTYLE = 'ISO';
-- check acceptance of "time zone style"
SELECT INTERVAL '01:00' AS "One hour";