diff options
author | Michael Meskes <meskes@postgresql.org> | 2019-01-30 13:58:25 +0100 |
---|---|---|
committer | Michael Meskes <meskes@postgresql.org> | 2019-01-30 14:35:52 +0100 |
commit | 7ea38f045dad6bbb7fbe807f2486df7370bc0b0f (patch) | |
tree | 4245ff47ee0353ac7cdaddeaae171e1af79c1565 /src/interfaces/ecpg/test/expected/sql-binary.c | |
parent | e2f731cdba9b7a79cddc64325990a8f51818877b (diff) | |
download | postgresql-7ea38f045dad6bbb7fbe807f2486df7370bc0b0f.tar.gz postgresql-7ea38f045dad6bbb7fbe807f2486df7370bc0b0f.zip |
Change error handling of out of scope variables in ecpg.
The function called can result in an out of memory error that subsequently was
disregarded. Instead it should set the appropriate SQL error variables and be
checked by whatever whenever statement is defined.
Diffstat (limited to 'src/interfaces/ecpg/test/expected/sql-binary.c')
-rw-r--r-- | src/interfaces/ecpg/test/expected/sql-binary.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/interfaces/ecpg/test/expected/sql-binary.c b/src/interfaces/ecpg/test/expected/sql-binary.c index 99244bbcef8..6d92ce344b6 100644 --- a/src/interfaces/ecpg/test/expected/sql-binary.c +++ b/src/interfaces/ecpg/test/expected/sql-binary.c @@ -103,6 +103,11 @@ if (sqlca.sqlcode < 0) exit (1);} /* declare C cursor for select name , accs , byte from empl where idnum = $1 */ #line 36 "binary.pgc" +if (sqlca.sqlcode < 0) exit (1); +#line 36 "binary.pgc" + +#line 36 "binary.pgc" + { ECPGdo(__LINE__, 0, 1, NULL, 0, ECPGst_normal, "declare C cursor for select name , accs , byte from empl where idnum = $1 ", ECPGt_long,&(empl.idnum),(long)1,(long)1,sizeof(long), ECPGt_NO_INDICATOR, NULL , 0L, 0L, 0L, ECPGt_EOIT, ECPGt_EORT); @@ -137,6 +142,11 @@ if (sqlca.sqlcode < 0) exit (1);} /* declare B binary cursor for select name , accs , byte from empl where idnum = $1 */ #line 44 "binary.pgc" +if (sqlca.sqlcode < 0) exit (1); +#line 44 "binary.pgc" + +#line 44 "binary.pgc" + { ECPGdo(__LINE__, 0, 1, NULL, 0, ECPGst_normal, "declare B binary cursor for select name , accs , byte from empl where idnum = $1 ", ECPGt_long,&(empl.idnum),(long)1,(long)1,sizeof(long), ECPGt_NO_INDICATOR, NULL , 0L, 0L, 0L, ECPGt_EOIT, ECPGt_EORT); @@ -174,6 +184,11 @@ if (sqlca.sqlcode < 0) exit (1);} /* declare A binary cursor for select byte from empl where idnum = $1 */ #line 55 "binary.pgc" +if (sqlca.sqlcode < 0) exit (1); +#line 55 "binary.pgc" + +#line 55 "binary.pgc" + { ECPGdo(__LINE__, 0, 1, NULL, 0, ECPGst_normal, "declare A binary cursor for select byte from empl where idnum = $1 ", ECPGt_long,&(empl.idnum),(long)1,(long)1,sizeof(long), ECPGt_NO_INDICATOR, NULL , 0L, 0L, 0L, ECPGt_EOIT, ECPGt_EORT); |