mirror of
https://github.com/postgres/postgres.git
synced 2025-07-05 07:21:24 +03:00
- Fixed constant listing in execute using clause.
- Fixed typo in ecpg for Informix dec_t type. - Fixed precision handling in Informix compat funxtions.
This commit is contained in:
@ -341,7 +341,7 @@ dectoasc(decimal * np, char *cp, int len, int right)
|
||||
if (right >= 0)
|
||||
str = PGTYPESnumeric_to_asc(nres, right);
|
||||
else
|
||||
str = PGTYPESnumeric_to_asc(nres, 0);
|
||||
str = PGTYPESnumeric_to_asc(nres, -1);
|
||||
|
||||
PGTYPESnumeric_free(nres);
|
||||
if (!str)
|
||||
|
Reference in New Issue
Block a user