summaryrefslogtreecommitdiff
path: root/src/interfaces/ecpg/test/expected/connect-test3.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/interfaces/ecpg/test/expected/connect-test3.c')
-rw-r--r--src/interfaces/ecpg/test/expected/connect-test3.c72
1 files changed, 48 insertions, 24 deletions
diff --git a/src/interfaces/ecpg/test/expected/connect-test3.c b/src/interfaces/ecpg/test/expected/connect-test3.c
index 5e4451a4c5..496083da5e 100644
--- a/src/interfaces/ecpg/test/expected/connect-test3.c
+++ b/src/interfaces/ecpg/test/expected/connect-test3.c
@@ -31,14 +31,15 @@ int
main(void)
{
/* exec sql begin declare section */
-
-
+
+
#line 16 "test3.pgc"
- char id [ 200 ] ;
-
+ char id[200];
+
#line 17 "test3.pgc"
- char res [ 200 ] ;
+ char res[200];
+
/* exec sql end declare section */
#line 18 "test3.pgc"
@@ -46,60 +47,83 @@ main(void)
ECPGdebug(1, stderr);
strcpy(id, "first");
- { ECPGconnect(__LINE__, 0, "connectdb" , NULL,NULL , id, 0); }
+ {
+ ECPGconnect(__LINE__, 0, "connectdb", NULL, NULL, id, 0);
+ }
#line 23 "test3.pgc"
- { ECPGconnect(__LINE__, 0, "regress1" , NULL,NULL , "second", 0); }
+ {
+ ECPGconnect(__LINE__, 0, "regress1", NULL, NULL, "second", 0);
+ }
#line 24 "test3.pgc"
/* this selects from "second" which was opened last */
- { ECPGdo(__LINE__, 0, 1, NULL, "select current_database () ", ECPGt_EOIT,
- ECPGt_char,(res),(long)200,(long)1,(200)*sizeof(char),
- ECPGt_NO_INDICATOR, NULL , 0L, 0L, 0L, ECPGt_EORT);}
+ {
+ ECPGdo(__LINE__, 0, 1, NULL, "select current_database () ", ECPGt_EOIT,
+ ECPGt_char, (res), (long) 200, (long) 1, (200) * sizeof(char),
+ ECPGt_NO_INDICATOR, NULL, 0L, 0L, 0L, ECPGt_EORT);
+ }
#line 27 "test3.pgc"
/* will close "second" */
- { ECPGdisconnect(__LINE__, "CURRENT");}
+ {
+ ECPGdisconnect(__LINE__, "CURRENT");
+ }
#line 30 "test3.pgc"
- { ECPGdo(__LINE__, 0, 1, NULL, "select current_database () ", ECPGt_EOIT,
- ECPGt_char,(res),(long)200,(long)1,(200)*sizeof(char),
- ECPGt_NO_INDICATOR, NULL , 0L, 0L, 0L, ECPGt_EORT);}
+ {
+ ECPGdo(__LINE__, 0, 1, NULL, "select current_database () ", ECPGt_EOIT,
+ ECPGt_char, (res), (long) 200, (long) 1, (200) * sizeof(char),
+ ECPGt_NO_INDICATOR, NULL, 0L, 0L, 0L, ECPGt_EORT);
+ }
#line 31 "test3.pgc"
- { ECPGconnect(__LINE__, 0, "regress1" , NULL,NULL , "second", 0); }
+ {
+ ECPGconnect(__LINE__, 0, "regress1", NULL, NULL, "second", 0);
+ }
#line 33 "test3.pgc"
/* will close "second" */
- { ECPGdisconnect(__LINE__, "DEFAULT");}
+ {
+ ECPGdisconnect(__LINE__, "DEFAULT");
+ }
#line 35 "test3.pgc"
- { ECPGconnect(__LINE__, 0, "connectdb" , NULL,NULL , "second", 0); }
+ {
+ ECPGconnect(__LINE__, 0, "connectdb", NULL, NULL, "second", 0);
+ }
#line 37 "test3.pgc"
- { ECPGdisconnect(__LINE__, "ALL");}
+ {
+ ECPGdisconnect(__LINE__, "ALL");
+ }
#line 38 "test3.pgc"
- { ECPGdisconnect(__LINE__, "CURRENT");}
+ {
+ ECPGdisconnect(__LINE__, "CURRENT");
+ }
#line 40 "test3.pgc"
- { ECPGdisconnect(__LINE__, "DEFAULT");}
+ {
+ ECPGdisconnect(__LINE__, "DEFAULT");
+ }
#line 41 "test3.pgc"
- { ECPGdisconnect(__LINE__, "ALL");}
+ {
+ ECPGdisconnect(__LINE__, "ALL");
+ }
#line 42 "test3.pgc"
/*
- * exec sql disconnect;
- * exec sql disconnect name;
+ * exec sql disconnect; exec sql disconnect name;
*
- * are used in other tests
+ * are used in other tests
*/
return (0);