Bug #22175 | Mixing with InnoDB table leads to an anomaly | ||
---|---|---|---|
Submitted: | 9 Sep 2006 10:27 | Modified: | 26 May 2010 17:48 |
Reporter: | Georg Richter | Email Updates: | |
Status: | Unsupported | Impact on me: | |
Category: | MySQL Server: Falcon storage engine | Severity: | S3 (Non-critical) |
Version: | 6.0 | OS: | Any (all) |
Assigned to: | CPU Architecture: | Any |
[9 Sep 2006 10:27]
Georg Richter
[17 Sep 2006 20:00]
Hakan Küçükyılmaz
Verified on Linux 32-bit change set 1.2295, 2006-09-15. Test case is falcon_bug_220.test. Regards, Hakan
[20 Oct 2006 18:01]
Kevin Lewis
This bug is also dependent on the implementation of Serializable transactions. See 22151 & 22189. The testcase inserts into both Falcon and Innodb table in a transaction, then concurrently deletes those records. With a serializable transaction the deletes will wait on the inserts to be committed. But Falcon does not wait. So the current result is that there a re no records in the innodb table one record in the Falcon table. Incidently, This kind of testcase will never work as expected using read-committed or repeatable-read isolation since InnoDB always serializes the updates, while Falcon will allow Concurrency.
[27 Oct 2006 18:29]
Kevin Lewis
Added a warning to MySQL whenever a falcon table is accessed inside a Serializable or Read-Uncommitted transaction. It looks like this; mysql> show warnings; +---------+------+--------------- | Level | Code | Message +---------+------+--------------- | Warning | 1556 | Falcon does not support SERIALIZABLE ISOLATION, using REPEATABLE READ instead. and; | Warning | 1556 | Falcon does not support READ UNCOMMITTED ISOLATION, using REPEATABLE READ instead.
[30 Aug 2007 17:12]
Kevin Lewis
I think we should close this bug since Falcon returns an error for Serializable transaction and the testcase, as currently written, has been working for some time. Either that, or we rename it to "Falcon needs Serializable Transactions"
[19 Oct 2007 16:33]
Kevin Lewis
Needs a Serializable transaction level.