-
Notifications
You must be signed in to change notification settings - Fork 39
Open
Labels
enhancementNew feature or requestNew feature or request
Description
test case:
CREATE SCHEMA mydb;
USE mydb;
CREATE TABLE t1 (id int PRIMARY KEY, big BLOB);
INSERT INTO t1 VALUES (1,LOAD_FILE('/tmp/aa'));
mysql:
mysql> INSERT INTO t1 VALUES (1,LOAD_FILE('/tmp/aa'));
Query OK, 1 row affected (0.00 sec)
mysql> table t1;
+----+------------+
| id | big |
+----+------------+
| 1 | NULL |
+----+------------+
1 row in set (0.00 sec)
openHalo:
mysql> INSERT INTO t1 VALUES (1,LOAD_FILE('/tmp/aa'));
ERROR 32900 (HY000): column "big" is of type `blob` but expression is of type `text`
PTAL.
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request