/* Processed by ecpg (regression mode) */ /* These include files are added by the preprocessor */ #include #include #include /* End of automatic include section */ #define ECPGdebug(X,Y) ECPGdebug((X)+100,(Y)) #line 1 "createtableas.pgc" #include #include #include #include #line 1 "regression.h" #line 6 "createtableas.pgc" /* exec sql whenever sqlerror sqlprint ; */ #line 8 "createtableas.pgc" int main(void) { /* exec sql begin declare section */ #line 14 "createtableas.pgc" int id ; /* exec sql end declare section */ #line 15 "createtableas.pgc" ECPGdebug(1, stderr); { ECPGconnect(__LINE__, 0, "ecpg1_regression" , NULL, NULL , NULL, 0); #line 18 "createtableas.pgc" if (sqlca.sqlcode < 0) sqlprint();} #line 18 "createtableas.pgc" { ECPGsetcommit(__LINE__, "on", NULL); #line 20 "createtableas.pgc" if (sqlca.sqlcode < 0) sqlprint();} #line 20 "createtableas.pgc" /* exec sql whenever sql_warning sqlprint ; */ #line 21 "createtableas.pgc" /* exec sql whenever sqlerror sqlprint ; */ #line 22 "createtableas.pgc" { ECPGdo(__LINE__, 0, 1, NULL, 0, ECPGst_normal, "create table cta_test ( id int )", ECPGt_EOIT, ECPGt_EORT); #line 24 "createtableas.pgc" if (sqlca.sqlwarn[0] == 'W') sqlprint(); #line 24 "createtableas.pgc" if (sqlca.sqlcode < 0) sqlprint();} #line 24 "createtableas.pgc" { ECPGdo(__LINE__, 0, 1, NULL, 0, ECPGst_normal, "insert into cta_test values ( 100 )", ECPGt_EOIT, ECPGt_EORT); #line 25 "createtableas.pgc" if (sqlca.sqlwarn[0] == 'W') sqlprint(); #line 25 "createtableas.pgc" if (sqlca.sqlcode < 0) sqlprint();} #line 25 "createtableas.pgc" { ECPGdo(__LINE__, 0, 1, NULL, 0, ECPGst_normal, "create table if not exists cta_test1 as select * from cta_test", ECPGt_EOIT, ECPGt_EORT); #line 27 "createtableas.pgc" if (sqlca.sqlwarn[0] == 'W') sqlprint(); #line 27 "createtableas.pgc" if (sqlca.sqlcode < 0) sqlprint();} #line 27 "createtableas.pgc" { ECPGdo(__LINE__, 0, 1, NULL, 0, ECPGst_normal, "select id from cta_test1", ECPGt_EOIT, ECPGt_int,&(id),(long)1,(long)1,sizeof(int), ECPGt_NO_INDICATOR, NULL , 0L, 0L, 0L, ECPGt_EORT); #line 28 "createtableas.pgc" if (sqlca.sqlwarn[0] == 'W') sqlprint(); #line 28 "createtableas.pgc" if (sqlca.sqlcode < 0) sqlprint();} #line 28 "createtableas.pgc" printf("ID = %d\n", id); { ECPGdo(__LINE__, 0, 1, NULL, 0, ECPGst_normal, "create table cta_test2 as select * from cta_test with no data", ECPGt_EOIT, ECPGt_EORT); #line 31 "createtableas.pgc" if (sqlca.sqlwarn[0] == 'W') sqlprint(); #line 31 "createtableas.pgc" if (sqlca.sqlcode < 0) sqlprint();} #line 31 "createtableas.pgc" { ECPGdo(__LINE__, 0, 1, NULL, 0, ECPGst_normal, "select count ( id ) from cta_test2", ECPGt_EOIT, ECPGt_int,&(id),(long)1,(long)1,sizeof(int), ECPGt_NO_INDICATOR, NULL , 0L, 0L, 0L, ECPGt_EORT); #line 32 "createtableas.pgc" if (sqlca.sqlwarn[0] == 'W') sqlprint(); #line 32 "createtableas.pgc" if (sqlca.sqlcode < 0) sqlprint();} #line 32 "createtableas.pgc" printf("ID = %d\n", id); { ECPGdo(__LINE__, 0, 1, NULL, 0, ECPGst_normal, "drop table cta_test", ECPGt_EOIT, ECPGt_EORT); #line 35 "createtableas.pgc" if (sqlca.sqlwarn[0] == 'W') sqlprint(); #line 35 "createtableas.pgc" if (sqlca.sqlcode < 0) sqlprint();} #line 35 "createtableas.pgc" { ECPGdo(__LINE__, 0, 1, NULL, 0, ECPGst_normal, "drop table cta_test1", ECPGt_EOIT, ECPGt_EORT); #line 36 "createtableas.pgc" if (sqlca.sqlwarn[0] == 'W') sqlprint(); #line 36 "createtableas.pgc" if (sqlca.sqlcode < 0) sqlprint();} #line 36 "createtableas.pgc" { ECPGdo(__LINE__, 0, 1, NULL, 0, ECPGst_normal, "drop table cta_test2", ECPGt_EOIT, ECPGt_EORT); #line 37 "createtableas.pgc" if (sqlca.sqlwarn[0] == 'W') sqlprint(); #line 37 "createtableas.pgc" if (sqlca.sqlcode < 0) sqlprint();} #line 37 "createtableas.pgc" { ECPGdisconnect(__LINE__, "ALL"); #line 38 "createtableas.pgc" if (sqlca.sqlwarn[0] == 'W') sqlprint(); #line 38 "createtableas.pgc" if (sqlca.sqlcode < 0) sqlprint();} #line 38 "createtableas.pgc" return 0; }