1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-28 23:42:10 +03:00

More changes to pgtypeslib and set optimization to -O1.

This commit is contained in:
Michael Meskes
2003-03-27 14:29:17 +00:00
parent 5e5c5cd31a
commit 89508a8492
18 changed files with 263 additions and 109 deletions

View File

@ -1,14 +1,14 @@
#include <stdio.h>
#include <pgtypes_numeric.h>
#include <decimal.h>
int
main()
{
char *text="error\n";
NumericVar *value1, *value2, *res;
Numeric *value1, *value2, *res;
exec sql begin declare section;
decimal(14,7) des = {0, 0, 0, 0, 0, NULL, NULL} ;
numeric num;
exec sql end declare section;
double d;
FILE *dbgs;