summaryrefslogtreecommitdiff
path: root/sql/sql_lex.cc
diff options
context:
space:
mode:
authorMikael Ronstrom <mikael@mysql.com>2009-10-01 15:04:42 +0200
committerMikael Ronstrom <mikael@mysql.com>2009-10-01 15:04:42 +0200
commitdc97402c11e7b19d1358772e94d34ce5b4496fc6 (patch)
treebb2c82e0db4feb614f0c75a19d5328563d607b03 /sql/sql_lex.cc
parent3b29941f5df7ba95685da159344bc2632c12f1ac (diff)
downloadmariadb-git-dc97402c11e7b19d1358772e94d34ce5b4496fc6.tar.gz
Changed all no_ to num_ to avoid strange names like no_list_values which is not expected to be number of list values, rather a boolea indicating no list values
Diffstat (limited to 'sql/sql_lex.cc')
-rw-r--r--sql/sql_lex.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sql_lex.cc b/sql/sql_lex.cc
index 61f243ece1c..703a97a6565 100644
--- a/sql/sql_lex.cc
+++ b/sql/sql_lex.cc
@@ -1498,7 +1498,7 @@ Alter_info::Alter_info(const Alter_info &rhs, MEM_ROOT *mem_root)
keys_onoff(rhs.keys_onoff),
tablespace_op(rhs.tablespace_op),
partition_names(rhs.partition_names, mem_root),
- no_parts(rhs.no_parts),
+ num_parts(rhs.num_parts),
change_level(rhs.change_level),
datetime_field(rhs.datetime_field),
error_if_not_empty(rhs.error_if_not_empty)