From: Date: July 6 2007 5:20pm Subject: bk commit into 6.0-falcon tree (hakank:1.2592) BUG#29511 List-Archive: http://lists.mysql.com/commits/30445 X-Bug: 29511 Message-Id: <20070706152028.F418120456F@lu0011.wdf.sap.corp> Below is the list of changes that have just been committed into a local 6.0-falcon repository of hakan. When hakan does a push these changes will be propagated to the main repository and, within 24 hours after the push, to the public repository. For information on how to access the public repository see http://dev.mysql.com/doc/mysql/en/installing-source-tree.html ChangeSet@stripped, 2007-07-06 17:20:22+02:00, hakank@stripped +2 -0 Added test case for fixed Bug#29511. mysql-test/r/falcon_bug_29511.result@stripped, 2007-07-06 17:20:18+02:00, hakank@stripped +8 -0 New BitKeeper file ``mysql-test/r/falcon_bug_29511.result'' mysql-test/r/falcon_bug_29511.result@stripped, 2007-07-06 17:20:18+02:00, hakank@stripped +0 -0 mysql-test/t/falcon_bug_29511.test@stripped, 2007-07-06 17:20:18+02:00, hakank@stripped +32 -0 New BitKeeper file ``mysql-test/t/falcon_bug_29511.test'' mysql-test/t/falcon_bug_29511.test@stripped, 2007-07-06 17:20:18+02:00, hakank@stripped +0 -0 # This is a BitKeeper patch. What follows are the unified diffs for the # set of deltas contained in the patch. The rest of the patch, the part # that BitKeeper cares about, is below these diffs. # User: hakank # Host: lu0011.wdf.sap.corp # Root: /home/hakan/work/mysql/mysql-5.1-falcon --- New file --- +++ mysql-test/r/falcon_bug_29511.result 07/07/06 17:20:18 *** Bug #29511 *** DROP TABLESPACE tablespace1 Engine Falcon; CREATE TABLESPACE tablespace1 ADD DATAFILE 'falcon_tablespace.fts' Engine Falcon; CREATE TABLESPACE tablespace2 ADD DATAFILE 'falcon_tablespace.fts' Engine Falcon; ERROR HY000: Unknown error -103 DROP TABLESPACE tablespace1 Engine Falcon; --- New file --- +++ mysql-test/t/falcon_bug_29511.test 07/07/06 17:20:18 # # Bug #29511: Create new tablespace with existing datafile name destroys existing tablespace # --echo *** Bug #29511 *** # ----------------------------------------------------- # # --- Initialisation --- # # ----------------------------------------------------- # --disable_warnings --error 0,65433 DROP TABLESPACE tablespace1 Engine Falcon; --enable_warnings CREATE TABLESPACE tablespace1 ADD DATAFILE 'falcon_tablespace.fts' Engine Falcon; # ----------------------------------------------------- # # --- Test --- # # ----------------------------------------------------- # --error 65433 CREATE TABLESPACE tablespace2 ADD DATAFILE 'falcon_tablespace.fts' Engine Falcon; # ----------------------------------------------------- # # --- Check --- # # ----------------------------------------------------- # # ----------------------------------------------------- # # --- Final cleanup --- # # ----------------------------------------------------- # DROP TABLESPACE tablespace1 Engine Falcon;