This is an automated email from the ASF dual-hosted git repository.
domino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/madlib.git
The following commit(s) were added to refs/heads/master by this push:
new cb42f53 Quick fix for bison issue
cb42f53 is described below
commit cb42f5304fabb6f7e98ab47d871fbfd810dfbc8f
Author: Domino Valdano <[email protected]>
AuthorDate: Fri Aug 2 10:29:10 2019 -0700
Quick fix for bison issue
This shouldn't break anything for old versions of bison (2.4+),
but will enable current versions of bison to be able to build madlib.
Current versions will still give some depcrecation warnings, but no
errors.
(See https://github.com/reductionista/madlib/tree/bison-update for
a more aggressive update that will get rid of the warnings,
but drops support for pre-3.3. We may want to apply this in the
future, but not now.)
Closes #428
---
doc/src/sql.yy | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/doc/src/sql.yy b/doc/src/sql.yy
index 7c4fbdc..0e4799a 100644
--- a/doc/src/sql.yy
+++ b/doc/src/sql.yy
@@ -151,7 +151,7 @@
};
/* The name of the parser class. */
-%define "parser_class_name" "SQLParser"
+%define parser_class_name "SQLParser"
/* Declare that an argument declared by the braced-code `argument-declaration'
* is an additional yyparse argument. The `argument-declaration' is used when