1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-05 07:21:24 +03:00

Just another Informix compatibility change. They uses "free" for cursors as wellafter closing them.

This commit is contained in:
Michael Meskes
2003-06-20 13:36:34 +00:00
parent d9b2401d90
commit 2cbaaee6c3
7 changed files with 36 additions and 5 deletions

View File

@ -13,13 +13,14 @@ EXEC SQL BEGIN DECLARE SECTION;
int *did = &i;
int a[10] = {9,8,7,6,5,4,3,2,1,0};
char text[10] = "klmnopqrst";
char *t = "uvwxyz1234";
char *t = (char *)malloc(10);
double f;
bool b = true;
varchar database[3];
EXEC SQL END DECLARE SECTION;
FILE *dbgs;
strcpy(t, "0123456789");
setlocale(LC_ALL, "de_DE");
if ((dbgs = fopen("log", "w")) != NULL)