| 10123 | */ |
| 10124 | |
| 10125 | static inline bool derived_table_optimization_done(TABLE_LIST *table) |
| 10126 | { |
| 10127 | SELECT_LEX_UNIT *derived= (table->derived ? |
| 10128 | table->derived : |
| 10129 | (table->view ? |
| 10130 | &table->view->unit: |
| 10131 | NULL)); |
| 10132 | return derived && |
| 10133 | (derived->is_excluded() || |
| 10134 | table->is_materialized_derived()); |
| 10135 | } |
| 10136 | |
| 10137 | |
| 10138 | /** |
no test coverage detected