| 295 | } |
| 296 | |
| 297 | bool check_all_placeholders_set() const |
| 298 | { |
| 299 | for (uint i= 0; i < param_count; i++) |
| 300 | { |
| 301 | if (param_array[i]->type() == Item_param::PARAM_ITEM) |
| 302 | { |
| 303 | my_error(ER_WRONG_ARGUMENTS, MYF(0), "OPEN"); |
| 304 | return true; |
| 305 | } |
| 306 | } |
| 307 | return false; |
| 308 | } |
| 309 | |
| 310 | private: |
| 311 | /** |
no test coverage detected