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
588463a4
Commit
588463a4
authored
Jun 20, 2001
by
D'Arcy J.M. Cain
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make sure that everything says version 3.2.
parent
54e374c9
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
2 deletions
+3
-2
src/interfaces/python/ChangeLog
src/interfaces/python/ChangeLog
+1
-0
src/interfaces/python/README
src/interfaces/python/README
+1
-1
src/interfaces/python/pgmodule.c
src/interfaces/python/pgmodule.c
+1
-1
No files found.
src/interfaces/python/ChangeLog
View file @
588463a4
...
@@ -9,6 +9,7 @@ Version 3.2
...
@@ -9,6 +9,7 @@ Version 3.2
- Add WIN32 support (gerhard@bigfoot.de)
- Add WIN32 support (gerhard@bigfoot.de)
- Fix some DB-API quoting problems (niall.smart@ebeon.com)
- Fix some DB-API quoting problems (niall.smart@ebeon.com)
- Moved development into PostgreSQL development tree.
- Moved development into PostgreSQL development tree.
- Added NUMERICOID to list of returned types.
Version 3.1
Version 3.1
- Fix some quoting functions. In particular handle NULLs better.
- Fix some quoting functions. In particular handle NULLs better.
...
...
src/interfaces/python/README
View file @
588463a4
...
@@ -64,7 +64,7 @@ based on the PyGres95 code written by Pascal Andre, andre@chimay.via.ecp.fr.
...
@@ -64,7 +64,7 @@ based on the PyGres95 code written by Pascal Andre, andre@chimay.via.ecp.fr.
I changed the version to 2.0 and updated the code for Python 1.5 and
I changed the version to 2.0 and updated the code for Python 1.5 and
PostgreSQL 6.2.1. While I was at it I upgraded the code to use full ANSI
PostgreSQL 6.2.1. While I was at it I upgraded the code to use full ANSI
style prototypes and changed the order of arguments to connect. The latest
style prototypes and changed the order of arguments to connect. The latest
version of PyGreSQL works with PostgreSQL
6.5 and Python 1.5.2
.
version of PyGreSQL works with PostgreSQL
7.1.2 and Python 2.0
.
1.2. Distribution files
1.2. Distribution files
...
...
src/interfaces/python/pgmodule.c
View file @
588463a4
...
@@ -46,7 +46,7 @@
...
@@ -46,7 +46,7 @@
#define NUMERICOID 1700
#define NUMERICOID 1700
static
PyObject
*
PGError
;
static
PyObject
*
PGError
;
static
const
char
*
PyPgVersion
=
"3.
1
"
;
static
const
char
*
PyPgVersion
=
"3.
2
"
;
/* taken from fileobject.c */
/* taken from fileobject.c */
#define BUF(v) PyString_AS_STRING((PyStringObject *)(v))
#define BUF(v) PyString_AS_STRING((PyStringObject *)(v))
...
...
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