| 126 | |
| 127 | |
| 128 | bool Key_part_spec::check_key_for_blob(const handler *file) const |
| 129 | { |
| 130 | if (!(file->ha_table_flags() & HA_CAN_INDEX_BLOBS)) |
| 131 | { |
| 132 | my_error(ER_BLOB_USED_AS_KEY, MYF(0), field_name.str, file->table_type()); |
| 133 | return true; |
| 134 | } |
| 135 | return false; |
| 136 | } |
| 137 | |
| 138 | |
| 139 | bool Key_part_spec::check_key_length_for_blob() const |
no test coverage detected