diff options
author | Georgi Kodinov <joro@sun.com> | 2009-08-21 17:41:48 +0300 |
---|---|---|
committer | Georgi Kodinov <joro@sun.com> | 2009-08-21 17:41:48 +0300 |
commit | 787a4940cabef1416dbba1942ee3a07b987e9338 (patch) | |
tree | e6c13b235af5125765f617afc9861d0273a62159 /sql/table.h | |
parent | b011f1ea1c2cff73706f8b3ef8eacea2c433a9d9 (diff) | |
parent | 8723e9d2269fec4d0a7dd4796deb53c0b2eab804 (diff) | |
download | mariadb-git-787a4940cabef1416dbba1942ee3a07b987e9338.tar.gz |
reverted the fix for bug #46019 from 5.1-bugteam
Diffstat (limited to 'sql/table.h')
-rw-r--r-- | sql/table.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/sql/table.h b/sql/table.h index 1beea8ac1a1..40372fa91cf 100644 --- a/sql/table.h +++ b/sql/table.h @@ -1466,15 +1466,6 @@ struct TABLE_LIST bool is_anonymous_derived_table() const { return derived && !view; } /** - @brief True if this TABLE_LIST represents an not yet materialized - derived table, i.e. the result of a subquery or view execution. - */ - bool is_non_materialized_derived_table() const - { - return derived && !derived_result; - } - - /** @brief Returns the name of the database that the referenced table belongs to. */ |