Details
-
Type:
Bug
-
Status: Closed
-
Priority:
Major
-
Resolution: Won't Fix
-
Affects Version/s: N/A
-
Fix Version/s: 10.0.15-FusionIO
-
Component/s: None
-
Labels:
Description
CREATE TABLE t4 (i int) ENGINE=InnoDB ATOMIC_WRITES=ON; ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'ON' at line 1
But the following is recognized:
CREATE TABLE t5 (i int) ENGINE=InnoDB ATOMIC_WRITES='ON'; CREATE TABLE t6 (i int) ENGINE=InnoDB ATOMIC_WRITES=OFF;
This is unusual and inconsistent.
revision-id: jplindst@mariadb.org-20140328064402-8xr2e8ck5oqatto2 date: 2014-03-28 08:44:02 +0200 build-date: 2014-04-09 22:27:11 +0300 revno: 3970 branch-nick: 10.0-FusionIO
Gliffy Diagrams
Attachments
Activity
- All
- Comments
- Work Log
- History
- Activity
- Transitions
Can't help, ON is reserved word on SQL, thus it can't be used here an you must use 'ON' instead. OFF is not a reserved work on SQL thus both OFF and 'OFF' are valid.