1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

[SHOW] EXPLAIN UPDATE/DELETE, code re-structuring

- Merge with 10.0-base
This commit is contained in:
Sergey Petrunya
2013-06-27 18:28:14 +04:00
52 changed files with 2739 additions and 556 deletions

View File

@ -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; }
};