1
0
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:
Michael Meskes
2003-10-06 06:44:55 +00:00
parent 5e3aaf5402
commit aeb1f6478e
4 changed files with 11 additions and 5 deletions

View File

@ -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)