Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
f590a5ea
Commit
f590a5ea
authored
Oct 30, 2003
by
Michael Meskes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Applied patch by Dave Cramer to fix several bugs in compatlib.
parent
d807bbe8
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
75 additions
and
14 deletions
+75
-14
src/interfaces/ecpg/ChangeLog
src/interfaces/ecpg/ChangeLog
+4
-0
src/interfaces/ecpg/compatlib/informix.c
src/interfaces/ecpg/compatlib/informix.c
+71
-14
No files found.
src/interfaces/ecpg/ChangeLog
View file @
f590a5ea
...
@@ -1697,6 +1697,10 @@ Sun Oct 26 10:47:05 CET 2003
...
@@ -1697,6 +1697,10 @@ Sun Oct 26 10:47:05 CET 2003
- Fixed bug with indicators when storage for the
- Fixed bug with indicators when storage for the
string is dynamically allocated
string is dynamically allocated
Thu Oct 30 11:12:37 CET 2003
- Applied patch by Dave Cramer fixing several bugs in compatlib.
- Set ecpg version to 3.0.0
- Set ecpg version to 3.0.0
- Set ecpg library to 4.0.0
- Set ecpg library to 4.0.0
- Set pgtypes library to 1.0.0
- Set pgtypes library to 1.0.0
...
...
src/interfaces/ecpg/compatlib/informix.c
View file @
f590a5ea
...
@@ -59,11 +59,10 @@ deccall3(decimal * arg1, decimal * arg2, decimal * result, int (*ptr) (numeric *
...
@@ -59,11 +59,10 @@ deccall3(decimal * arg1, decimal * arg2, decimal * result, int (*ptr) (numeric *
*
nres
;
*
nres
;
int
i
;
int
i
;
if
(
risnull
(
CDECIMALTYPE
,
(
char
*
)
arg1
)
||
risnull
(
CDECIMALTYPE
,
(
char
*
)
arg2
))
/* set it to null in case it errors out later */
{
rsetnull
(
CDECIMALTYPE
,
(
char
*
)
result
);
rsetnull
(
CDECIMALTYPE
,
(
char
*
)
result
);
if
(
risnull
(
CDECIMALTYPE
,
(
char
*
)
arg1
)
||
risnull
(
CDECIMALTYPE
,
(
char
*
)
arg2
))
return
0
;
return
0
;
}
if
((
a1
=
PGTYPESnumeric_new
())
==
NULL
)
if
((
a1
=
PGTYPESnumeric_new
())
==
NULL
)
return
ECPG_INFORMIX_OUT_OF_MEMORY
;
return
ECPG_INFORMIX_OUT_OF_MEMORY
;
...
@@ -263,9 +262,13 @@ deccvlong(long lng, decimal * np)
...
@@ -263,9 +262,13 @@ deccvlong(long lng, decimal * np)
}
}
int
int
decdiv
(
decimal
*
n1
,
decimal
*
n2
,
decimal
*
n3
)
decdiv
(
decimal
*
n1
,
decimal
*
n2
,
decimal
*
result
)
{
{
int
i
=
deccall3
(
n1
,
n2
,
n3
,
PGTYPESnumeric_div
);
int
i
;
rsetnull
(
CDECIMALTYPE
,
(
char
*
)
result
);
i
=
deccall3
(
n1
,
n2
,
result
,
PGTYPESnumeric_div
);
if
(
i
!=
0
)
if
(
i
!=
0
)
switch
(
errno
)
switch
(
errno
)
...
@@ -285,9 +288,12 @@ decdiv(decimal * n1, decimal * n2, decimal * n3)
...
@@ -285,9 +288,12 @@ decdiv(decimal * n1, decimal * n2, decimal * n3)
}
}
int
int
decmul
(
decimal
*
n1
,
decimal
*
n2
,
decimal
*
n3
)
decmul
(
decimal
*
n1
,
decimal
*
n2
,
decimal
*
result
)
{
{
int
i
=
deccall3
(
n1
,
n2
,
n3
,
PGTYPESnumeric_mul
);
int
i
;
rsetnull
(
CDECIMALTYPE
,
(
char
*
)
result
);
i
=
deccall3
(
n1
,
n2
,
result
,
PGTYPESnumeric_mul
);
if
(
i
!=
0
)
if
(
i
!=
0
)
switch
(
errno
)
switch
(
errno
)
...
@@ -304,9 +310,12 @@ decmul(decimal * n1, decimal * n2, decimal * n3)
...
@@ -304,9 +310,12 @@ decmul(decimal * n1, decimal * n2, decimal * n3)
}
}
int
int
decsub
(
decimal
*
n1
,
decimal
*
n2
,
decimal
*
n3
)
decsub
(
decimal
*
n1
,
decimal
*
n2
,
decimal
*
result
)
{
{
int
i
=
deccall3
(
n1
,
n2
,
n3
,
PGTYPESnumeric_sub
);
int
i
;
rsetnull
(
CDECIMALTYPE
,
(
char
*
)
result
);
i
=
deccall3
(
n1
,
n2
,
result
,
PGTYPESnumeric_sub
);
if
(
i
!=
0
)
if
(
i
!=
0
)
switch
(
errno
)
switch
(
errno
)
...
@@ -341,7 +350,7 @@ dectoasc(decimal * np, char *cp, int len, int right)
...
@@ -341,7 +350,7 @@ dectoasc(decimal * np, char *cp, int len, int right)
if
(
right
>=
0
)
if
(
right
>=
0
)
str
=
PGTYPESnumeric_to_asc
(
nres
,
right
);
str
=
PGTYPESnumeric_to_asc
(
nres
,
right
);
else
else
str
=
PGTYPESnumeric_to_asc
(
nres
,
-
1
);
str
=
PGTYPESnumeric_to_asc
(
nres
,
nres
->
dscale
);
PGTYPESnumeric_free
(
nres
);
PGTYPESnumeric_free
(
nres
);
if
(
!
str
)
if
(
!
str
)
...
@@ -431,10 +440,60 @@ rdatestr(date d, char *str)
...
@@ -431,10 +440,60 @@ rdatestr(date d, char *str)
return
0
;
return
0
;
}
}
/*
*
* the input for this function is mmddyyyy and any non-numeric
* character can be used as a separator
*
*/
int
int
rstrdate
(
char
*
str
,
date
*
d
)
rstrdate
(
char
*
str
,
date
*
d
)
{
{
date
dat
=
PGTYPESdate_from_asc
(
str
,
NULL
);
date
dat
;
char
strbuf
[
10
];
int
i
,
j
;
rsetnull
(
CDATETYPE
,
(
char
*
)
&
dat
);
/*
* we have to flip the year month date around for postgres
* expects yyyymmdd
*
*/
for
(
i
=
0
,
j
=
0
;
i
<
10
;
i
++
)
{
/* ignore non-digits */
if
(
isdigit
(
str
[
i
])
)
{
/* j only increments if it is a digit */
switch
(
j
)
{
/* stick the month into the 4th, 5th position */
case
0
:
case
1
:
strbuf
[
j
+
4
]
=
str
[
i
];
break
;
/* stick the day into the 6th, and 7th position */
case
2
:
case
3
:
strbuf
[
j
+
4
]
=
str
[
i
];
break
;
/* stick the year into the first 4 positions */
case
4
:
case
5
:
case
6
:
case
7
:
strbuf
[
j
-
4
]
=
str
[
i
];
break
;
}
j
++
;
}
}
strbuf
[
8
]
=
'\0'
;
dat
=
PGTYPESdate_from_asc
(
strbuf
,
NULL
);
if
(
errno
&&
errno
!=
PGTYPES_DATE_BAD_DATE
)
if
(
errno
&&
errno
!=
PGTYPES_DATE_BAD_DATE
)
return
ECPG_INFORMIX_BAD_DATE
;
return
ECPG_INFORMIX_BAD_DATE
;
...
@@ -617,7 +676,7 @@ initValue(long lng_val)
...
@@ -617,7 +676,7 @@ initValue(long lng_val)
value
.
maxdigits
=
log10
(
2
)
*
(
8
*
sizeof
(
long
)
-
1
);
value
.
maxdigits
=
log10
(
2
)
*
(
8
*
sizeof
(
long
)
-
1
);
/* determine the number of digits */
/* determine the number of digits */
for
(
i
=
1
;
i
<=
value
.
maxdigits
;
i
++
)
for
(
i
=
0
;
i
<=
value
.
maxdigits
;
i
++
)
{
{
if
((
int
)
(
value
.
val
/
pow
(
10
,
i
))
!=
0
)
if
((
int
)
(
value
.
val
/
pow
(
10
,
i
))
!=
0
)
value
.
digits
=
i
+
1
;
value
.
digits
=
i
+
1
;
...
@@ -635,8 +694,6 @@ initValue(long lng_val)
...
@@ -635,8 +694,6 @@ initValue(long lng_val)
}
}
/* safety-net */
/* safety-net */
value
.
val_string
[
value
.
digits
]
=
'\0'
;
value
.
val_string
[
value
.
digits
]
=
'\0'
;
/* clean up */
free
(
tmp
);
}
}
/* return the position oft the right-most dot in some string */
/* return the position oft the right-most dot in some string */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment