diff options
author | monty@mysql.com <> | 2004-03-12 15:56:28 +0200 |
---|---|---|
committer | monty@mysql.com <> | 2004-03-12 15:56:28 +0200 |
commit | e9e9ce659e24377e9f14780381672846b0aab864 (patch) | |
tree | d9e1ef0e0d0db5a3231370d8bc23b268dedd6529 /sql/table.cc | |
parent | 158770e35656d0bd7e3576d15d9c2e27ac7baba2 (diff) | |
download | mariadb-git-e9e9ce659e24377e9f14780381672846b0aab864.tar.gz |
Fixes to newly pushed code
Diffstat (limited to 'sql/table.cc')
-rw-r--r-- | sql/table.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sql/table.cc b/sql/table.cc index d7944e6dd80..01a09426634 100644 --- a/sql/table.cc +++ b/sql/table.cc @@ -1216,10 +1216,11 @@ bool check_table_name(const char *name, uint length) #endif } + bool check_column_name(const char *name) { const char *start= name; - bool last_char_is_space= false; + bool last_char_is_space= FALSE; while (*name) { |