aboutsummaryrefslogtreecommitdiff
path: root/src/interfaces/ecpg/test/preproc
diff options
context:
space:
mode:
Diffstat (limited to 'src/interfaces/ecpg/test/preproc')
-rw-r--r--src/interfaces/ecpg/test/preproc/variable.pgc3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/interfaces/ecpg/test/preproc/variable.pgc b/src/interfaces/ecpg/test/preproc/variable.pgc
index 01594911dda..5836d6eb268 100644
--- a/src/interfaces/ecpg/test/preproc/variable.pgc
+++ b/src/interfaces/ecpg/test/preproc/variable.pgc
@@ -42,6 +42,9 @@ exec sql end declare section;
strcpy(msg, "connect");
exec sql connect to REGRESSDB1;
+ strcpy(msg, "set");
+ exec sql set datestyle to iso;
+
strcpy(msg, "create");
exec sql create table family(name char(8), born integer, age smallint, married date, children integer);