Details
-
New Feature
-
Status: Closed (View Workflow)
-
Minor
-
Resolution: Won't Do
-
None
-
None
-
1.0.11
Description
1.not support replce into table_name
2.not support load data replce into
1.not support replce into table_name
2.not support load data replce into
It appears to work to me. Can you please give us more details on the problem?
MariaDB [test]> replace into t1 values (1,2);
Query OK, 1 row affected (0.26 sec)
MariaDB [test]> select * from t1;
+------+------+
| a | b |
+------+------+
| 1 | 2 |
+------+------+
1 row in set (0.10 sec)
MariaDB [test]> replace into t1 values (2,3);
Query OK, 1 row affected (0.10 sec)
MariaDB [test]> select * from t1;
+------+------+
| a | b |
+------+------+
| 1 | 2 |
| 2 | 3 |
+------+------+
2 rows in set (0.02 sec)