diff options
Diffstat (limited to 'sql/item.h')
-rw-r--r-- | sql/item.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sql/item.h b/sql/item.h index 766bd7fba41..11b141613f3 100644 --- a/sql/item.h +++ b/sql/item.h @@ -120,6 +120,7 @@ public: longlong val_int() { return item->val_int(); } String* val_str(String* s) { return item->val_str(s); } void make_field(Send_field* f) { item->make_field(f); } + bool check_cols(uint col) { return item->check_cols(col); } }; |