Commit b90feaed authored by unknown's avatar unknown

DATA_MYSQL_TRUE_VARCHAR can be DATA_VARCHAR, DATA_BINARY, or

DATA_VARMYSQL so remove unnecessary condition.


parent 97a281f5
......@@ -2100,9 +2100,9 @@ row_sel_convert_mysql_key_to_innobase(
/* Calculate data length and data field total length */
if (type == DATA_BLOB || ( type == DATA_VARCHAR &&
if (type == DATA_BLOB ||
dtype_get_mysql_type(dfield_get_type(dfield))
== DATA_MYSQL_TRUE_VARCHAR)) {
== DATA_MYSQL_TRUE_VARCHAR) {
/* The key field is a column prefix of a BLOB,
TEXT, OR TRUE VARCHAR type column */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment