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
dc554458
Commit
dc554458
authored
May 20, 2003
by
Michael Meskes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Reversed my incorrect fix.
parent
edcf9c23
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
16 additions
and
5 deletions
+16
-5
src/interfaces/ecpg/ChangeLog
src/interfaces/ecpg/ChangeLog
+10
-0
src/interfaces/ecpg/ecpglib/connect.c
src/interfaces/ecpg/ecpglib/connect.c
+4
-3
src/interfaces/ecpg/preproc/pgc.l
src/interfaces/ecpg/preproc/pgc.l
+2
-2
No files found.
src/interfaces/ecpg/ChangeLog
View file @
dc554458
...
...
@@ -1422,6 +1422,16 @@ Fri May 16 11:45:50 CEST 2003
Fri May 16 13:32:10 CEST 2003
- Made double variables work again.
Mon May 19 09:22:40 CEST 2003
- Fixed exec sql ifdef command.
Tue May 20 11:47:00 CEST 2003
- Reversed my fix for ifdef. It was the example, not ecpg which was
incorrect.
- Changed DBPATH variable to PG_DBPATH.
- Set ecpg version to 2.12.0.
- Set ecpg library to 3.4.2.
- Set pgtypes library to 1.0.0
...
...
src/interfaces/ecpg/ecpglib/connect.c
View file @
dc554458
/* $Header: /cvsroot/pgsql/src/interfaces/ecpg/ecpglib/connect.c,v 1.
4 2003/05/02 14:43:25
meskes Exp $ */
/* $Header: /cvsroot/pgsql/src/interfaces/ecpg/ecpglib/connect.c,v 1.
5 2003/05/20 11:05:27
meskes Exp $ */
#include "postgres_fe.h"
...
...
@@ -264,8 +264,9 @@ ECPGconnect_informix(int lineno, const char *name, const char *user, const char
char
*
informix_name
=
(
char
*
)
name
,
*
envname
;
/* Informix uses an environment variable DBPATH that overrides
* the connection parameters given here */
envname
=
getenv
(
"DBPATH"
);
* the connection parameters given here.
* We do the same with PG_DBPATH as the syntax is different. */
envname
=
getenv
(
"PG_DBPATH"
);
if
(
envname
)
informix_name
=
envname
;
return
(
ECPGconnect
(
lineno
,
informix_name
,
user
,
passwd
,
connection_name
,
autocommit
));
...
...
src/interfaces/ecpg/preproc/pgc.l
View file @
dc554458
...
...
@@ -12,7 +12,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/interfaces/ecpg/preproc/pgc.l,v 1.10
8 2003/05/19 07:19:5
7 meskes Exp $
* $Header: /cvsroot/pgsql/src/interfaces/ecpg/preproc/pgc.l,v 1.10
9 2003/05/20 11:05:2
7 meskes Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -905,7 +905,7 @@ cppline {space}*#(.*\\{space})+.*
<xskip>{other} { /* ignore */ }
<xcond>{identifier}{space}* {
<xcond>{identifier}{space}*
';'
{
if ( preproc_tos >= MAX_NESTED_IF-1 ) {
mmerror(PARSE_ERROR, ET_FATAL, "Too many nested 'EXEC SQL IFDEF' conditions");
}
...
...
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