diff options
author | bell@sanja.is.com.ua <> | 2002-12-10 18:10:00 +0200 |
---|---|---|
committer | bell@sanja.is.com.ua <> | 2002-12-10 18:10:00 +0200 |
commit | 5fc21bc187fc31a72ac20183cd2d653c2b1dc520 (patch) | |
tree | f6d9a309c74ab9c724ad61974a110e1cab4efb95 /sql/item_row.h | |
parent | 2885d552613c402d91da21717efa7b0220702aa8 (diff) | |
download | mariadb-git-5fc21bc187fc31a72ac20183cd2d653c2b1dc520.tar.gz |
postreview fix (SCRUM)
NULL fixed
max_length fixed
layout fixed
Diffstat (limited to 'sql/item_row.h')
-rw-r--r-- | sql/item_row.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/sql/item_row.h b/sql/item_row.h index d097fca8f1d..4767d19d08f 100644 --- a/sql/item_row.h +++ b/sql/item_row.h @@ -65,8 +65,9 @@ public: enum Item_result result_type() const { return ROW_RESULT; } void update_used_tables(); - virtual uint cols() { return arg_count; } - virtual Item* el(uint i) { return items[i]; } - virtual Item** addr(uint i) { return items + i; } - virtual bool check_cols(uint c); + uint cols() { return arg_count; } + Item* el(uint i) { return items[i]; } + Item** addr(uint i) { return items + i; } + bool check_cols(uint c); + bool null_inside(); }; |