summaryrefslogtreecommitdiff
path: root/sql/item.h
diff options
context:
space:
mode:
Diffstat (limited to 'sql/item.h')
-rw-r--r--sql/item.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/sql/item.h b/sql/item.h
index 46a65b31b38..f4fff4a0418 100644
--- a/sql/item.h
+++ b/sql/item.h
@@ -1710,10 +1710,6 @@ public:
// Row emulation
virtual uint cols() const { return 1; }
virtual Item* element_index(uint i) { return this; }
- virtual bool element_index_by_name(uint *idx, const LEX_CSTRING &name) const
- {
- return true; // Error
- }
virtual Item** addr(uint i) { return 0; }
virtual bool check_cols(uint c);
bool check_type_traditional_scalar(const char *opname) const;
@@ -2943,7 +2939,6 @@ public:
const Type_handler *type_handler() const { return &type_handler_row; }
uint cols() const { return arg_count; }
- bool element_index_by_name(uint *idx, const LEX_CSTRING &name) const;
Item* element_index(uint i) { return arg_count ? args[i] : this; }
Item** addr(uint i) { return arg_count ? args + i : NULL; }
bool check_cols(uint c)
@@ -2956,7 +2951,6 @@ public:
return false;
}
bool row_create_items(THD *thd, List<Spvar_definition> *list);
- Field *get_row_field(uint i) const;
};