Skip to content

Commit

Permalink
fix(shannon): errs brought by revert
Browse files Browse the repository at this point in the history
  • Loading branch information
ShannonBase committed Aug 3, 2024
1 parent be24758 commit 202f0c8
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 11 deletions.
10 changes: 0 additions & 10 deletions sql/item_strfunc.h
Original file line number Diff line number Diff line change
Expand Up @@ -1253,16 +1253,6 @@ class Item_func_to_vector final : public Item_str_func {
String *val_str(String *str) override;
};

class Item_func_to_vector final : public Item_str_func {
String buffer;

public:
Item_func_to_vector(const POS &pos, Item *a) : Item_str_func(pos, a) {}
bool resolve_type(THD *thd) override;
const char *func_name() const override { return "to_vector"; }
String *val_str(String *str) override;
};

class Item_func_from_vector final : public Item_str_func {
static const uint32 per_value_chars = 16;
static const uint32 max_output_bytes =
Expand Down
1 change: 0 additions & 1 deletion storage/rapid_engine/handler/ha_shannon_rapid.cc
Original file line number Diff line number Diff line change
Expand Up @@ -721,7 +721,6 @@ int ha_rapid::load_table(const TABLE &table_arg) {
// Scan the primary table and read the records.
if (table_arg.file->inited == NONE && table_arg.file->ha_rnd_init(true)) {
my_error(ER_NO_SUCH_TABLE, MYF(0), table_arg.s->db.str, table_arg.s->table_name.str);
table_arg.s->table_name.str);
return HA_ERR_GENERIC;
}
//Start to write to IMCS. Do scan the primary table.
Expand Down

0 comments on commit 202f0c8

Please sign in to comment.