Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Postgres/src/interfaces/ecpg/test/expected/   (Postgres Database Version 18.4©)  Datei vom 11.4.2026 mit Größe 4 kB image not shown  

Quelle  sql-createtableas.c

  Sprache: C
 

/* Processed by ecpg (regression mode) */
/* These include files are added by the preprocessor */
#include <ecpglib.h>
#include <ecpgerrno.h>
#include <sqlca.h>
/* End of automatic include section */
#define ECPGdebug(X,Y) ECPGdebug((X)+100,(Y))

#line 1 "createtableas.pgc"
#include <stdlib.h>
#include <string.h>
#include <stdlib.h>
#include <stdio.h>


#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__, 01, 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__, 01, 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__, 01, 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__, 01, 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__, 01, 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__, 01, 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__, 01, 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__, 01, 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__, 01, 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;
}

Messung V0.5 in Prozent
C=96 H=100 G=97

¤ Dauer der Verarbeitung: 0.10 Sekunden  (vorverarbeitet am  2026-08-09) ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

PVS Prover

Isabelle Prover

NIST Cobol Testsuite

Cephes Mathematical Library

Vienna Development Method

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.