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
f604b39c
Commit
f604b39c
authored
Sep 20, 2003
by
Michael Meskes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- Applied some bug fixing patches by Dave Cramer <dave@fastcrypt.com>.
- Added protecting defines to include files.
parent
f72a93b4
Changes
10
Show whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
42 additions
and
8 deletions
+42
-8
src/interfaces/ecpg/ChangeLog
src/interfaces/ecpg/ChangeLog
+6
-0
src/interfaces/ecpg/ecpglib/data.c
src/interfaces/ecpg/ecpglib/data.c
+5
-3
src/interfaces/ecpg/include/datetime.h
src/interfaces/ecpg/include/datetime.h
+5
-0
src/interfaces/ecpg/include/decimal.h
src/interfaces/ecpg/include/decimal.h
+5
-0
src/interfaces/ecpg/include/ecpg_informix.h
src/interfaces/ecpg/include/ecpg_informix.h
+4
-0
src/interfaces/ecpg/include/ecpgerrno.h
src/interfaces/ecpg/include/ecpgerrno.h
+3
-3
src/interfaces/ecpg/include/sql3types.h
src/interfaces/ecpg/include/sql3types.h
+6
-1
src/interfaces/ecpg/include/sqltypes.h
src/interfaces/ecpg/include/sqltypes.h
+5
-0
src/interfaces/ecpg/pgtypeslib/numeric.c
src/interfaces/ecpg/pgtypeslib/numeric.c
+2
-0
src/interfaces/ecpg/pgtypeslib/timestamp.c
src/interfaces/ecpg/pgtypeslib/timestamp.c
+1
-1
No files found.
src/interfaces/ecpg/ChangeLog
View file @
f604b39c
...
...
@@ -1639,6 +1639,12 @@ Thu Sep 18 14:54:47 CEST 2003
Fri Sep 19 08:33:39 CEST 2003
- Some code cleanup
Sat Sep 20 11:06:13 CEST 2003
- Applied some bug fixing patches by Dave Cramer <dave@fastcrypt.com>.
- Added protecting defines to include files.
- Renamed my own strndup() function because of a name clash.
- Set ecpg version to 3.0.0
- Set ecpg library to 4.0.0
- Set pgtypes library to 1.0.0
...
...
src/interfaces/ecpg/ecpglib/data.c
View file @
f604b39c
/* $Header: /cvsroot/pgsql/src/interfaces/ecpg/ecpglib/data.c,v 1.
19 2003/09/19 14:06:21
meskes Exp $ */
/* $Header: /cvsroot/pgsql/src/interfaces/ecpg/ecpglib/data.c,v 1.
20 2003/09/20 09:10:09
meskes Exp $ */
#define POSTGRES_ECPG_INTERNAL
#include "postgres_fe.h"
...
...
@@ -393,10 +393,12 @@ ECPGget_data(const PGresult *results, int act_tuple, int act_field, int lineno,
/* did we get an error? */
if
(
errno
!=
0
)
{
ECPGlog
(
"ECPGget_data line %d: RESULT: %s errno %d
\n
"
,
lineno
,
pval
?
pval
:
""
,
errno
);
if
(
INFORMIX_MODE
(
compat
))
{
/* Informix wants its own NULL value here instead of an error */
ECPGset_informix_null
(
ECPGt_numeric
,
&
nres
);
ECPGset_informix_null
(
ECPGt_numeric
,
nres
);
}
else
{
...
...
@@ -440,7 +442,7 @@ ECPGget_data(const PGresult *results, int act_tuple, int act_field, int lineno,
if
(
INFORMIX_MODE
(
compat
))
{
/* Informix wants its own NULL value here instead of an error */
ECPGset_informix_null
(
ECPGt_interval
,
&
ires
);
ECPGset_informix_null
(
ECPGt_interval
,
ires
);
}
else
{
...
...
src/interfaces/ecpg/include/datetime.h
View file @
f604b39c
#ifndef _ECPG_DATETIME_H
#define _ECPG_DATETIME_H
#include <pgtypes_timestamp.h>
#include <pgtypes_interval.h>
...
...
@@ -11,3 +14,5 @@ extern int dttoasc(dtime_t *, char *);
extern
int
dttofmtasc
(
dtime_t
*
,
char
*
,
int
,
char
*
);
extern
int
intoasc
(
intrvl_t
*
,
char
*
);
extern
int
dtcvfmtasc
(
char
*
,
char
*
,
dtime_t
*
);
#endif
/* ndef _ECPG_DATETIME_H */
src/interfaces/ecpg/include/decimal.h
View file @
f604b39c
#ifndef _ECPG_DECIMAL_H
#define _ECPG_DECIMAL_H
#include <pgtypes_numeric.h>
typedef
decimal
dec_t
;
...
...
@@ -16,3 +19,5 @@ int dectoasc(dec_t *, char *, int, int);
int
dectodbl
(
dec_t
*
,
double
*
);
int
dectoint
(
dec_t
*
,
int
*
);
int
dectolong
(
dec_t
*
,
long
*
);
#endif
/* ndef _ECPG_DECIMAL_H */
src/interfaces/ecpg/include/ecpg_informix.h
View file @
f604b39c
#ifndef _ECPG_INFORMIX_H
#define _ECPG_INFORMIX_H
/*
* This file contains stuff needed to be as compatible to Informix as possible.
*/
...
...
@@ -32,3 +34,5 @@ extern void ldchar(char *, int, char *);
extern
void
ECPG_informix_set_var
(
int
,
void
*
,
int
);
extern
void
*
ECPG_informix_get_var
(
int
);
#endif
/* ndef _ECPG_INFORMIX_H */
src/interfaces/ecpg/include/ecpgerrno.h
View file @
f604b39c
#ifndef _ECPG_ERR
OR
_H
#define _ECPG_ERR
OR
_H
#ifndef _ECPG_ERR
NO
_H
#define _ECPG_ERR
NO
_H
#include <errno.h>
...
...
@@ -74,4 +74,4 @@
/* WARNING: BlankPortalAssignName: portal * already exists */
#define ECPG_WARNING_PORTAL_EXISTS -605
#endif
/* !_ECPG_ERR
OR
_H */
#endif
/* !_ECPG_ERR
NO
_H */
src/interfaces/ecpg/include/sql3types.h
View file @
f604b39c
#ifndef _ECPG_SQL3TYPES_H
#define _ECPG_SQL3TYPES_H
/* SQL3 dynamic type codes
*
* Copyright (c) 2000, Christof Petig <christof.petig@wtal.de>
*
* $Header: /cvsroot/pgsql/src/interfaces/ecpg/include/sql3types.h,v 1.
7 2001/10/28 06:26:11 momjian
Exp $
* $Header: /cvsroot/pgsql/src/interfaces/ecpg/include/sql3types.h,v 1.
8 2003/09/20 09:10:09 meskes
Exp $
*/
/* chapter 13.1 table 2: Codes used for SQL data types in Dynamic SQL */
...
...
@@ -41,3 +44,5 @@ enum
SQL3_DDT_ILLEGAL
/* not a datetime data type (not part of
* standard) */
};
#endif
/* !_ECPG_SQL3TYPES_H */
src/interfaces/ecpg/include/sqltypes.h
View file @
f604b39c
#ifndef ECPG_SQLTYPES_H
#define ECPG_SQLTYPES_H
#define CCHARTYPE ECPGt_char
#define CSHORTTYPE ECPGt_short
#define CINTTYPE ECPGt_int
...
...
@@ -23,3 +26,5 @@
#define CROWTYPE 123
#define CLVCHARPTRTYPE 124
#define CTYPEMAX 25
#endif
/* ndef ECPG_SQLTYPES_H */
src/interfaces/ecpg/pgtypeslib/numeric.c
View file @
f604b39c
...
...
@@ -146,6 +146,7 @@ set_var_from_str(char *str, char **ptr, numeric *dest)
bool
have_dp
=
FALSE
;
int
i
=
0
;
errno
=
0
;
*
ptr
=
str
;
while
(
*
(
*
ptr
))
{
...
...
@@ -1386,6 +1387,7 @@ PGTYPESnumeric_copy(numeric *src, numeric *dst)
{
int
i
;
if
(
dst
==
NULL
)
return
-
1
;
zero_var
(
dst
);
dst
->
weight
=
src
->
weight
;
...
...
src/interfaces/ecpg/pgtypeslib/timestamp.c
View file @
f604b39c
...
...
@@ -573,7 +573,7 @@ dttofmtasc_replace(timestamp *ts, date dDate, int dow, struct tm * tm,
break
;
case
'S'
:
replace_val
.
uint_val
=
tm
->
tm_sec
;
replace_type
=
PGTYPES_TYPE_UINT
;
replace_type
=
PGTYPES_TYPE_UINT
_2_LZ
;
break
;
case
't'
:
replace_val
.
char_val
=
'\t'
;
...
...
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