aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2000-09-22 15:33:31 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2000-09-22 15:33:31 +0000
commitd35437069a691f6ac2298d43ed70a1e83d340b0e (patch)
treebbf8ed2e45ffecce4c1396725907f4a22b86165b /src
parent353371874f3050bafa1a9f4d7ad7253d70165d81 (diff)
downloadpostgresql-d35437069a691f6ac2298d43ed70a1e83d340b0e.tar.gz
postgresql-d35437069a691f6ac2298d43ed70a1e83d340b0e.zip
Add check of 'SET DateStyle TO DEFAULT'.
Diffstat (limited to 'src')
-rw-r--r--src/test/regress/expected/timestamp.out1
-rw-r--r--src/test/regress/sql/timestamp.sql2
2 files changed, 3 insertions, 0 deletions
diff --git a/src/test/regress/expected/timestamp.out b/src/test/regress/expected/timestamp.out
index 15120b87587..fd712e92fee 100644
--- a/src/test/regress/expected/timestamp.out
+++ b/src/test/regress/expected/timestamp.out
@@ -1578,3 +1578,4 @@ SELECT '' AS to_timestamp_8, to_timestamp('2000January09Sunday', 'YYYYFMMonthDDF
| Sun Jan 09 00:00:00 2000 PST
(1 row)
+SET DateStyle TO DEFAULT;
diff --git a/src/test/regress/sql/timestamp.sql b/src/test/regress/sql/timestamp.sql
index ae97dfd3205..97b01f9f550 100644
--- a/src/test/regress/sql/timestamp.sql
+++ b/src/test/regress/sql/timestamp.sql
@@ -222,3 +222,5 @@ SELECT '' AS to_timestamp_6, to_timestamp('15 "text bettween quote marks" 98 54
SELECT '' AS to_timestamp_7, to_timestamp('05121445482000', 'MMDDHHMISSYYYY');
SELECT '' AS to_timestamp_8, to_timestamp('2000January09Sunday', 'YYYYFMMonthDDFMDay');
+
+SET DateStyle TO DEFAULT;