diff options
author | unknown <jcole@abel.spaceapes.com> | 2001-03-14 07:15:45 -0600 |
---|---|---|
committer | unknown <jcole@abel.spaceapes.com> | 2001-03-14 07:15:45 -0600 |
commit | 79924f27efb1640ef2430cc6be59d5de35df39b6 (patch) | |
tree | e7dfccda5cff6fea865f644da997138ac44495c1 /sql/sql_yacc.yy | |
parent | 8187e5e8f8fd8dd5e9c3aa5dea68db4af0e98a7e (diff) | |
download | mariadb-git-79924f27efb1640ef2430cc6be59d5de35df39b6.tar.gz |
Reversed SQL_ANSI_MODE per Monty's request.
BitKeeper/etc/logging_ok:
Logging to logging@openlogging.org accepted
Diffstat (limited to 'sql/sql_yacc.yy')
-rw-r--r-- | sql/sql_yacc.yy | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/sql/sql_yacc.yy b/sql/sql_yacc.yy index a533b9ff44a..34cdb3dbf13 100644 --- a/sql/sql_yacc.yy +++ b/sql/sql_yacc.yy @@ -394,7 +394,6 @@ bool my_yyoverflow(short **a, YYSTYPE **b,int *yystacksize); %token END %token THEN_SYM -%token SQL_ANSI_MODE %token SQL_BIG_TABLES %token SQL_BIG_SELECTS %token SQL_SELECT_LIMIT @@ -2609,18 +2608,6 @@ option_value: else Lex->options|= OPTION_NOT_AUTO_COMMIT; } - | SQL_ANSI_MODE equal NUM - { - if(atoi($3.str) == 0) - { - Lex->options &= ~(OPTION_ANSI_MODE); - Lex->thd->state_map[(uchar) '"'] = STATE_STRING; - } else { - Lex->options |= OPTION_ANSI_MODE; - Lex->thd->state_map[(uchar) '"'] = STATE_USER_VARIABLE_DELIMITER; - } - } - | SQL_SELECT_LIMIT equal ULONG_NUM { Lex->select_limit= $3; |