diff options
author | unknown <sanja@askmonty.org> | 2011-07-21 12:29:00 +0300 |
---|---|---|
committer | unknown <sanja@askmonty.org> | 2011-07-21 12:29:00 +0300 |
commit | a105b3403fe0a8224fb238d0eafe5beb344989a7 (patch) | |
tree | 6069baa8733db22e01a8024bc2bcb48488b56036 /sql/opt_range.h | |
parent | c08186faa63e5c322e7e98a318643265f150438a (diff) | |
download | mariadb-git-a105b3403fe0a8224fb238d0eafe5beb344989a7.tar.gz |
Removed incorrect fix and its test suite (the test suit is duplicate).
Fixed explains of previous patch.
mysql-test/r/explain.result:
Fixed explains of previous patch.
mysql-test/r/join_outer.result:
Fixed explains of previous patch.
mysql-test/r/negation_elimination.result:
Fixed explains of previous patch.
mysql-test/r/view.result:
Fixed explains of previous patch.
mysql-test/suite/innodb/r/innodb_mysql.result:
Removed duplicate test suite.
mysql-test/suite/innodb/t/innodb_mysql.test:
Removed duplicate test suite.
mysql-test/suite/innodb_plugin/r/innodb_mysql.result:
Removed duplicate test suite.
mysql-test/suite/innodb_plugin/t/innodb_mysql.test:
Removed duplicate test suite.
sql/opt_range.h:
Removed incorrect fix.
sql/records.cc:
Removed incorrect fix.
Diffstat (limited to 'sql/opt_range.h')
-rw-r--r-- | sql/opt_range.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/sql/opt_range.h b/sql/opt_range.h index a7691c88685..1e3008d78aa 100644 --- a/sql/opt_range.h +++ b/sql/opt_range.h @@ -271,7 +271,6 @@ public: virtual bool reverse_sorted() = 0; virtual bool unique_key_range() { return false; } - virtual bool clustered_pk_range() { return false; } enum { QS_TYPE_RANGE = 0, @@ -542,8 +541,6 @@ public: THD *thd; int read_keys_and_merge(); - bool clustered_pk_range() { return test(pk_quick_select); } - /* used to get rows collected in Unique */ READ_RECORD read_record; }; |