diff options
author | Michael Meskes <meskes@postgresql.org> | 2003-09-09 10:46:42 +0000 |
---|---|---|
committer | Michael Meskes <meskes@postgresql.org> | 2003-09-09 10:46:42 +0000 |
commit | fcdf0e22fcac4724c67bac18706d5c50931aa02d (patch) | |
tree | cc848030ea7ad86b3f6395b97ff388bcdf5bc5b3 /src/interfaces/ecpg/test/num_test.pgc | |
parent | fd65be4a780aa74d9209746cb0fa0787d75dbab5 (diff) | |
download | postgresql-fcdf0e22fcac4724c67bac18706d5c50931aa02d.tar.gz postgresql-fcdf0e22fcac4724c67bac18706d5c50931aa02d.zip |
- Added Dave patch for Informix handling of numeric/int conversion.
- Changed all new datatypes to lowercase.
- Fixed rounding bug in numerical types.
Diffstat (limited to 'src/interfaces/ecpg/test/num_test.pgc')
-rw-r--r-- | src/interfaces/ecpg/test/num_test.pgc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interfaces/ecpg/test/num_test.pgc b/src/interfaces/ecpg/test/num_test.pgc index 7cf687c220a..3b0a1dba15a 100644 --- a/src/interfaces/ecpg/test/num_test.pgc +++ b/src/interfaces/ecpg/test/num_test.pgc @@ -6,7 +6,7 @@ int main() { char *text="error\n"; - Numeric *value1, *value2, *res; + numeric *value1, *value2, *res; exec sql begin declare section; numeric(14,7) des = {0, 0, 0, 0, 0, NULL, NULL} ; exec sql end declare section; |