summaryrefslogtreecommitdiff
path: root/sql/sql_cte.h
diff options
context:
space:
mode:
authorMonty <monty@mariadb.org>2016-06-23 21:57:53 +0300
committerMonty <monty@mariadb.org>2016-06-23 21:57:53 +0300
commita0d9f20c0c77702d7a8a3dbc5c295e9b1eefcafa (patch)
tree15fd0e625c4d4630e974f0bdc367db5bb6bc740a /sql/sql_cte.h
parentec38c7e60bf8dbe54b1551e75254337bec1993a4 (diff)
downloadmariadb-git-bb-10.2-decimal.tar.gz
Fixed compiler warnings and test failures found by buildbotbb-10.2-decimal
Fixed ccfilter to detect errors where the column is included in the error message
Diffstat (limited to 'sql/sql_cte.h')
-rw-r--r--sql/sql_cte.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sql_cte.h b/sql/sql_cte.h
index 0cbc9247af9..761d01ccd7f 100644
--- a/sql/sql_cte.h
+++ b/sql/sql_cte.h
@@ -41,7 +41,7 @@ private:
LEX_STRING unparsed_spec;
/* Return the map where 1 is set only in the position for this element */
- table_map get_elem_map() { return 1 << number; }
+ table_map get_elem_map() { return (table_map) 1 << number; }
public:
/*