Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
postgres-lambda-diff
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jakob Huber
postgres-lambda-diff
Commits
2d5ff2f9
Commit
2d5ff2f9
authored
24 years ago
by
Michael Meskes
Browse files
Options
Downloads
Patches
Plain Diff
Added patch by Cristof for catching yet another NOTICE.
parent
136a4aeb
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/interfaces/ecpg/ChangeLog
+10
-5
10 additions, 5 deletions
src/interfaces/ecpg/ChangeLog
src/interfaces/ecpg/lib/connect.c
+2
-1
2 additions, 1 deletion
src/interfaces/ecpg/lib/connect.c
with
12 additions
and
6 deletions
src/interfaces/ecpg/ChangeLog
+
10
−
5
View file @
2d5ff2f9
...
...
@@ -925,31 +925,36 @@ Wed May 17 07:52:59 CEST 2000
handling.
- Set library version to 3.1.1.
Mon Sep 4 14:10:38
PD
T 2000
Mon Sep 4 14:10:38
CES
T 2000
- Synced preproc.y with gram.y.
- Synced keyword.c.
Mon Sep 18 13:55:11
PD
T 2000
Mon Sep 18 13:55:11
CES
T 2000
- Added int8 support based on a patch by Martijn Schoemaker <martijn@osp.nl>
Wed Sep 20 12:40:27
PD
T 2000
Wed Sep 20 12:40:27
CES
T 2000
- Added patch by Christof Petig <christof.petig@wtal.de> to process
backend NOTICEs.
- Added patch by Christof Petig <christof.petig@wtal.de> to cache
type information.
Thu Sep 21 13:54:13
PD
T 2000
Thu Sep 21 13:54:13
CES
T 2000
- Enabled parser to accept ip addresses instead of host names.
Tue Sep 26 13:00:16
PD
T 2000
Tue Sep 26 13:00:16
CES
T 2000
- Synced preproc.y with gram.y.
- Synced keyword.c.
- Added patch by Christof Petig <christof.petig@wtal.de> to fix NOT
FOUND problem on update/insert/delete.
Wed Oct 4 14:36:51 CEST 2000
- Added patch by Christof Petig <christof.petig@wtal.de> to fix
missing NOTICE.
- Set ecpg version to 2.8.0.
- Set library version to 3.2.0.
This diff is collapsed.
Click to expand it.
src/interfaces/ecpg/lib/connect.c
+
2
−
1
View file @
2d5ff2f9
...
...
@@ -158,7 +158,8 @@ ECPGnoticeProcessor(void *arg, const char *message)
}
/* NOTICE: PerformPortalClose: portal "*" not found */
if
(
!
strncmp
(
message
,
"PerformPortalClose: portal"
,
26
)
if
((
!
strncmp
(
message
,
"PerformPortalClose: portal"
,
26
)
||
!
strncmp
(
message
,
"PerformPortalFetch: portal"
,
26
))
&&
strstr
(
message
+
26
,
"not found"
))
{
ECPGnoticeProcessor_raise
(
ECPG_NOTICE_UNKNOWN_PORTAL
,
message
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment