| 4372 | */ |
| 4373 | |
| 4374 | bool LEX::only_view_structure() |
| 4375 | { |
| 4376 | switch (sql_command) { |
| 4377 | case SQLCOM_SHOW_CREATE: |
| 4378 | case SQLCOM_CHECKSUM: |
| 4379 | case SQLCOM_SHOW_TABLES: |
| 4380 | case SQLCOM_SHOW_FIELDS: |
| 4381 | case SQLCOM_REVOKE_ALL: |
| 4382 | case SQLCOM_REVOKE: |
| 4383 | case SQLCOM_GRANT: |
| 4384 | case SQLCOM_CREATE_VIEW: |
| 4385 | return TRUE; |
| 4386 | case SQLCOM_CREATE_TABLE: |
| 4387 | return create_info.like(); |
| 4388 | default: |
| 4389 | return FALSE; |
| 4390 | } |
| 4391 | } |
| 4392 | |
| 4393 | |
| 4394 | /* |
no test coverage detected