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:
@ -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));
|
||||
}
|
||||
|
Reference in New Issue
Block a user