summaryrefslogtreecommitdiff
path: root/sql/opt_range.h
diff options
context:
space:
mode:
authorSergey Petrunya <psergey@askmonty.org>2013-06-27 17:56:49 +0400
committerSergey Petrunya <psergey@askmonty.org>2013-06-27 17:56:49 +0400
commitbefacafd73d4892f2ad84991ad7c2d4626e45c47 (patch)
treeb83bb27634fa3f82471bcdeb5fc134f2262bc00a /sql/opt_range.h
parent5422098b758dfec801b32c833b8840ec96e00081 (diff)
downloadmariadb-git-befacafd73d4892f2ad84991ad7c2d4626e45c47.tar.gz
[SHOW] EXPLAIN UPDATE/DELETE, code re-structuring
- Let Query Plan Footprint store join buffer type in binary form, not string. - Same for LooseScan type.
Diffstat (limited to 'sql/opt_range.h')
-rw-r--r--sql/opt_range.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/sql/opt_range.h b/sql/opt_range.h
index ddaa5c5e59a..e67274c19a6 100644
--- a/sql/opt_range.h
+++ b/sql/opt_range.h
@@ -944,11 +944,7 @@ public:
void dbug_dump(int indent, bool verbose);
#endif
bool is_agg_distinct() { return have_agg_distinct; }
- virtual void append_loose_scan_type(String *str)
- {
- if (is_index_scan)
- str->append(STRING_WITH_LEN(" (scanning)"));
- }
+ bool loose_scan_is_scanning() { return is_index_scan; }
};