* Fix insecure parsing of server command-line switches * Reset OpenSSL randomness state in each postmaster child process * Make REPLICATION privilege checks test current user not authenticated user * Fix GiST indexes to not use "fuzzy" geometric comparisons when it's not appropriate to do so * Fix erroneous range-union and penalty logic in GiST indexes that use contrib/btree_gist for variable-width data types, that is text, bytea, bit, and numeric columns * Fix bugs in GiST page splitting code for multi-column indexes * Fix gist_point_consistent to handle fuzziness consistently * See the release notes for the rest of the changes: http://www.postgresql.org/docs/9.2/static/release-9-2-4.html /usr/share/doc/packages/postgresql/HISTORY ------------------------------------------------------------------ - Update to version 9.2.4 * Fix insecure parsing of server command-line switches * Reset OpenSSL randomness state in each postmaster child process * Make REPLICATION privilege checks test current user not authenticated user * Fix GiST indexes to not use "fuzzy" geometric comparisons when it's not appropriate to do so * Fix erroneous range-union and penalty logic in GiST indexes that use contrib/btree_gist for variable-width data types, that is text, bytea, bit, and numeric columns * Fix bugs in GiST page splitting code for multi-column indexes * Fix gist_point_consistent to handle fuzziness consistently * See the release notes for the rest of the changes: http://www.postgresql.org/docs/9.2/static/release-9-2-4.html OBS-URL: https://build.opensuse.org/package/show/server:database:postgresql/orafce?expand=0&rev=4
20 lines
771 B
Diff
20 lines
771 B
Diff
diff -ru orafce-HEAD-36ccc5b/plvlex.h orafce-HEAD-36ccc5b-mod/plvlex.h
|
|
--- orafce-HEAD-36ccc5b/plvlex.h 2012-08-28 09:34:47.000000000 -0400
|
|
+++ orafce-HEAD-36ccc5b-mod/plvlex.h 2013-08-08 09:24:00.209114601 -0400
|
|
@@ -8,3 +8,5 @@
|
|
char *modificator;
|
|
char *classname;
|
|
} orafce_lexnode;
|
|
+
|
|
+#define YYPARSE_PARAM result /* need this to pass a pointer (void *) to yyparse */
|
|
diff -ru orafce-HEAD-36ccc5b/sqlparse.y orafce-HEAD-36ccc5b-mod/sqlparse.y
|
|
--- orafce-HEAD-36ccc5b/sqlparse.y 2012-08-28 09:34:47.000000000 -0400
|
|
+++ orafce-HEAD-36ccc5b-mod/sqlparse.y 2013-08-08 09:24:15.353229493 -0400
|
|
@@ -1,6 +1,5 @@
|
|
%{
|
|
|
|
-#define YYPARSE_PARAM result /* need this to pass a pointer (void *) to yyparse */
|
|
#define YYDEBUG 1
|
|
|
|
#define YYLLOC_DEFAULT(Current, Rhs, N) \
|