diff options
author | monty@mishka.local <> | 2004-10-14 18:03:46 +0300 |
---|---|---|
committer | monty@mishka.local <> | 2004-10-14 18:03:46 +0300 |
commit | 719c88e38fd772efd3f13096380d57f282dfd649 (patch) | |
tree | d6c50a4680a01729ce573d4c4f548366a8d2b530 /sql/item_cmpfunc.h | |
parent | 0543320240560d278114fe951e0c5caca0ef8c40 (diff) | |
download | mariadb-git-719c88e38fd772efd3f13096380d57f282dfd649.tar.gz |
true,false -> TRUE, FALSE
Simple fixes/optimization of things discovered during review of new pushed code
Diffstat (limited to 'sql/item_cmpfunc.h')
-rw-r--r-- | sql/item_cmpfunc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/item_cmpfunc.h b/sql/item_cmpfunc.h index 3e98684b6ca..b3a8cb88fd0 100644 --- a/sql/item_cmpfunc.h +++ b/sql/item_cmpfunc.h @@ -855,7 +855,7 @@ public: char escape; Item_func_like(Item *a,Item *b, Item *escape_arg) - :Item_bool_func2(a,b), canDoTurboBM(false), pattern(0), pattern_len(0), + :Item_bool_func2(a,b), canDoTurboBM(FALSE), pattern(0), pattern_len(0), bmGs(0), bmBc(0), escape_item(escape_arg) {} longlong val_int(); enum Functype functype() const { return LIKE_FUNC; } |