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

- Only use typedefs inside their scope.

- Variables that are out of scope, were not removed all the time.
- Make a varchar NULL set everything to 0 when not using indicators.
- Synced parser.
This commit is contained in:
Michael Meskes
2004-06-27 12:28:42 +00:00
parent 4eb5f0a8e2
commit 03ad5da8f8
10 changed files with 116 additions and 34 deletions

View File

@ -1002,12 +1002,12 @@ ECPG_informix_get_var(int number)
int
rsetnull(int t, char *ptr)
{
ECPGset_informix_null(t, ptr);
ECPGset_noind_null(t, ptr);
return 0;
}
int
risnull(int t, char *ptr)
{
return (ECPGis_informix_null(t, ptr));
return (ECPGis_noind_null(t, ptr));
}