File tree Expand file tree Collapse file tree 2 files changed +12
-6
lines changed Expand file tree Collapse file tree 2 files changed +12
-6
lines changed Original file line number Diff line number Diff line change @@ -925,31 +925,36 @@ Wed May 17 07:52:59 CEST 2000
925
925
handling.
926
926
- Set library version to 3.1.1.
927
927
928
- Mon Sep 4 14:10:38 PDT 2000
928
+ Mon Sep 4 14:10:38 CEST 2000
929
929
930
930
- Synced preproc.y with gram.y.
931
931
- Synced keyword.c.
932
932
933
- Mon Sep 18 13:55:11 PDT 2000
933
+ Mon Sep 18 13:55:11 CEST 2000
934
934
935
935
- Added int8 support based on a patch by Martijn Schoemaker <martijn@osp.nl>
936
936
937
- Wed Sep 20 12:40:27 PDT 2000
937
+ Wed Sep 20 12:40:27 CEST 2000
938
938
939
939
- Added patch by Christof Petig <christof.petig@wtal.de> to process
940
940
backend NOTICEs.
941
941
- Added patch by Christof Petig <christof.petig@wtal.de> to cache
942
942
type information.
943
943
944
- Thu Sep 21 13:54:13 PDT 2000
944
+ Thu Sep 21 13:54:13 CEST 2000
945
945
946
946
- Enabled parser to accept ip addresses instead of host names.
947
947
948
- Tue Sep 26 13:00:16 PDT 2000
948
+ Tue Sep 26 13:00:16 CEST 2000
949
949
950
950
- Synced preproc.y with gram.y.
951
951
- Synced keyword.c.
952
952
- Added patch by Christof Petig <christof.petig@wtal.de> to fix NOT
953
953
FOUND problem on update/insert/delete.
954
+
955
+ Wed Oct 4 14:36:51 CEST 2000
956
+
957
+ - Added patch by Christof Petig <christof.petig@wtal.de> to fix
958
+ missing NOTICE.
954
959
- Set ecpg version to 2.8.0.
955
960
- Set library version to 3.2.0.
Original file line number Diff line number Diff line change @@ -158,7 +158,8 @@ ECPGnoticeProcessor(void *arg, const char *message)
158
158
}
159
159
160
160
/* NOTICE: PerformPortalClose: portal "*" not found */
161
- if (!strncmp (message ,"PerformPortalClose: portal" ,26 )
161
+ if ((!strncmp (message ,"PerformPortalClose: portal" ,26 )
162
+ || !strncmp (message ,"PerformPortalFetch: portal" ,26 ))
162
163
&& strstr (message + 26 ,"not found" ))
163
164
{
164
165
ECPGnoticeProcessor_raise (ECPG_NOTICE_UNKNOWN_PORTAL , message );
You can’t perform that action at this time.
0 commit comments