summaryrefslogtreecommitdiff
path: root/sql/sql_lex.h
diff options
context:
space:
mode:
authorAlexander Barkov <bar@mariadb.org>2017-07-31 17:34:59 +0400
committerAlexander Barkov <bar@mariadb.org>2017-07-31 17:34:59 +0400
commit4937474f862010c90f76bf879a70c1edf17e7c85 (patch)
tree2c95821a22c9c2fd83e06b4ad9fa7048c70be4c9 /sql/sql_lex.h
parent716898755a308f7803eecd3e139e9c58603980c7 (diff)
downloadmariadb-git-4937474f862010c90f76bf879a70c1edf17e7c85.tar.gz
MDEV-13414 Fix the SP code to avoid excessive use of strlen
Diffstat (limited to 'sql/sql_lex.h')
-rw-r--r--sql/sql_lex.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/sql/sql_lex.h b/sql/sql_lex.h
index 3c7c99dff3d..c1351b110f6 100644
--- a/sql/sql_lex.h
+++ b/sql/sql_lex.h
@@ -1287,6 +1287,7 @@ struct st_sp_chistics
enum enum_sp_data_access daccess;
void init() { bzero(this, sizeof(*this)); }
void set(const st_sp_chistics &other) { *this= other; }
+ bool read_from_mysql_proc_row(THD *thd, TABLE *table);
};