aboutsummaryrefslogtreecommitdiff
path: root/src/interfaces/ecpg/test/test2.pgc
diff options
context:
space:
mode:
Diffstat (limited to 'src/interfaces/ecpg/test/test2.pgc')
-rw-r--r--src/interfaces/ecpg/test/test2.pgc8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/interfaces/ecpg/test/test2.pgc b/src/interfaces/ecpg/test/test2.pgc
index ed0599cdeaf..3b7ff3f9d55 100644
--- a/src/interfaces/ecpg/test/test2.pgc
+++ b/src/interfaces/ecpg/test/test2.pgc
@@ -11,9 +11,9 @@ exec sql begin declare section;
short age;
} birth;
} personal;
- struct personal_indicator { short name;
- struct birth_indicator { short born;
- int age;
+ struct personal_indicator { short ind_name;
+ struct birth_indicator { short ind_born;
+ int ind_age;
} ind_birth;
} ind_personal;
long ind_married;
@@ -26,7 +26,7 @@ exec sql end declare section;
ECPGdebug(1, dbgs);
strcpy(msg, "connect");
- exec sql connect mm;
+ exec sql connect to mm;
strcpy(msg, "create");
exec sql create table meskes(name char(8), born integer, age smallint, married char(8));