[Checkins] SVN: relstorage/trunk/relstorage/adapters/schema.py Reverted to the MyISAM engine for the new_oid table

Shane Hathaway shane at hathawaymix.org
Tue Sep 29 03:07:58 EDT 2009


Log message for revision 104601:
  Reverted to the MyISAM engine for the new_oid table
  (like RelStorage 1.2 and below). The InnoDB engine has the
  wrong semantics for the new_oid table.
  

Changed:
  U   relstorage/trunk/relstorage/adapters/schema.py

-=-
Modified: relstorage/trunk/relstorage/adapters/schema.py
===================================================================
--- relstorage/trunk/relstorage/adapters/schema.py	2009-09-29 06:16:04 UTC (rev 104600)
+++ relstorage/trunk/relstorage/adapters/schema.py	2009-09-29 07:07:57 UTC (rev 104601)
@@ -74,7 +74,7 @@
     mysql:
         CREATE TABLE new_oid (
             zoid        BIGINT NOT NULL PRIMARY KEY AUTO_INCREMENT
-        ) ENGINE = InnoDB;
+        ) ENGINE = MyISAM;
 
     oracle:
         CREATE SEQUENCE zoid_seq;
@@ -362,7 +362,7 @@
     mysql:
         CREATE TABLE new_oid (
             zoid        BIGINT NOT NULL PRIMARY KEY AUTO_INCREMENT
-        ) ENGINE = InnoDB;
+        ) ENGINE = MyISAM;
 
     oracle:
         CREATE SEQUENCE zoid_seq;



More information about the checkins mailing list