Details
-
Bug
-
Status: Closed (View Workflow)
-
Trivial
-
Resolution: Not a Bug
-
None
-
None
-
None
-
None
-
Only tested on Windows XP
Description
mysql client: when the statement delimiter is in the same line of the new DELIMITER command, the delimiter is lost.
Example:
MariaDB [(none)]> delimiter ||
|
MariaDB [(none)]> select 1;
|
-> || delimiter ;
|
+---+
|
| 1 |
|
+---+
|
| 1 |
|
+---+
|
1 row in set (0.00 sec)
|
->
|
At this point... no delimiter seems to be recognized:
-> select 1 ||
|
MariaDB [(none)]> select 1 ;
|
-> select 1 ;
|
-> select 1 ||
|
-> || ;
|
->
|