summaryrefslogtreecommitdiff
path: root/sql/sql_prepare.cc
diff options
context:
space:
mode:
authorbrian@zim.(none) <>2006-03-09 16:44:08 -0800
committerbrian@zim.(none) <>2006-03-09 16:44:08 -0800
commiteefd1207bb8d422944add4bb9cad64070bf47f13 (patch)
tree407275d5a687e4a6876141135931177d388ddc23 /sql/sql_prepare.cc
parent78abb2d117d46735e2d45dc6e4e7eae7350cae04 (diff)
downloadmariadb-git-eefd1207bb8d422944add4bb9cad64070bf47f13.tar.gz
This patch does 1) fix my build breakage 2) Complete the removal of all symbols which could clash with another parser.
Diffstat (limited to 'sql/sql_prepare.cc')
-rw-r--r--sql/sql_prepare.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sql_prepare.cc b/sql/sql_prepare.cc
index 332f699200e..0f4ae04962b 100644
--- a/sql/sql_prepare.cc
+++ b/sql/sql_prepare.cc
@@ -2757,7 +2757,7 @@ bool Prepared_statement::prepare(const char *packet, uint packet_len)
lex->safe_to_cache_query= FALSE;
lex->stmt_prepare_mode= TRUE;
- error= yyparse((void *)thd) || thd->is_fatal_error ||
+ error= MYSQLparse((void *)thd) || thd->is_fatal_error ||
thd->net.report_error || init_param_array(this);
/*
While doing context analysis of the query (in check_prepared_statement)