aboutsummaryrefslogtreecommitdiff
path: root/src/interfaces/ecpg/test/num_test.pgc
diff options
context:
space:
mode:
authorMichael Meskes <meskes@postgresql.org>2003-09-09 10:46:42 +0000
committerMichael Meskes <meskes@postgresql.org>2003-09-09 10:46:42 +0000
commitfcdf0e22fcac4724c67bac18706d5c50931aa02d (patch)
treecc848030ea7ad86b3f6395b97ff388bcdf5bc5b3 /src/interfaces/ecpg/test/num_test.pgc
parentfd65be4a780aa74d9209746cb0fa0787d75dbab5 (diff)
downloadpostgresql-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.pgc2
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;