[MDEV-5780] create-big fails in 10.0 Created: 2014-03-03 Updated: 2014-03-10 Resolved: 2014-03-10 |
|
| Status: | Closed |
| Project: | MariaDB Server |
| Component/s: | None |
| Affects Version/s: | 10.0.8 |
| Fix Version/s: | 10.0.10 |
| Type: | Bug | Priority: | Major |
| Reporter: | Sergei Golubchik | Assignee: | Michael Widenius |
| Resolution: | Fixed | Votes: | 0 |
| Labels: | None | ||
| Description |
|
After CREATE OR REPLACE implementation the test create-big now fails. Before CREATE OR REPLACE, a create .... select that tried to create an existing table, failed in mysql_execute_command():
Now this if (create_table->table block is removed, so the failure happens much later. As a result, the test fails. |
| Comments |
| Comment by Michael Widenius [ 2014-03-10 ] |
|
The test failed with: The issue was that create...trigger part of the test suite used a debug_sync point that before was never triggered (in other words, wrong meaningless test). I fixed this by adding a wait and go for debug the debug syncpoint in the test. |
| Comment by Michael Widenius [ 2014-03-10 ] |
|
This was a bug in the test case. Fixed in my tree and will be shortly pushed into the 10.0 tree. |