12345678910111213141516171819 |
- --- connectivity/source/parse/sqlbison.y.orig 2021-09-18 13:35:17.897000000 +1000
- +++ connectivity/source/parse/sqlbison.y 2021-09-18 13:32:58.864000000 +1000
- @@ -74,9 +74,15 @@
-
- // yyi is the internal number of the rule that is currently being reduced
- // This can be mapped to external rule number via the yyrmap.
- +#if defined YYBISON && YYBISON >= 30800
- +#define SQL_NEW_RULE newNode("", SQLNodeType::Rule, yyr1[yyrule])
- +#define SQL_NEW_LISTRULE newNode("", SQLNodeType::ListRule, yyr1[yyrule])
- +#define SQL_NEW_COMMALISTRULE newNode("", SQLNodeType::CommaListRule, yyr1[yyrule])
- +#else
- #define SQL_NEW_RULE newNode("", SQLNodeType::Rule, yyr1[yyn])
- #define SQL_NEW_LISTRULE newNode("", SQLNodeType::ListRule, yyr1[yyn])
- #define SQL_NEW_COMMALISTRULE newNode("", SQLNodeType::CommaListRule, yyr1[yyn])
- +#endif
-
-
- extern connectivity::OSQLParser* xxx_pGLOBAL_SQLPARSER;
|