Skip to content

Commit

Permalink
Temporarily disable the fix for WebScaleSQL Issue #108.
Browse files Browse the repository at this point in the history
Issue #108: Index-only scans do not work for partitioned tables and extended keys
c1f1f0b64eaecd132fc6ec21663faf0510afacaf
  • Loading branch information
spetrunia committed Oct 9, 2016
1 parent 50f3236 commit a06faac
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion storage/rocksdb/ha_rocksdb.cc
Original file line number Diff line number Diff line change
Expand Up @@ -4008,6 +4008,7 @@ bool ha_rocksdb::same_table(const ha_rocksdb& other) const
return m_tbl_def->base_tablename() == other.m_tbl_def->base_tablename();
}

#ifdef MARIAROCKS_NOT_YET
bool ha_rocksdb::init_with_fields()
{
uint pk= table_share->primary_key;
Expand All @@ -4022,7 +4023,7 @@ bool ha_rocksdb::init_with_fields()
cached_table_flags= table_flags();
return false; /* Ok */
}

#endif

/**
Convert record from table->record[0] form into a form that can be written
Expand Down
4 changes: 2 additions & 2 deletions storage/rocksdb/ha_rocksdb.h
Original file line number Diff line number Diff line change
Expand Up @@ -591,9 +591,9 @@ class ha_rocksdb: public my_core::handler
HA_NULL_IN_KEY |
HA_PARTIAL_COLUMN_READ;
}

#ifdef MARIAROCKS_NOT_YET
bool init_with_fields() override;

#endif
/** @brief
This is a bitmap of flags that indicates how the storage engine
implements indexes. The current index flags are documented in
Expand Down

0 comments on commit a06faac

Please sign in to comment.