diff options
author | Igor Babaev <igor@askmonty.org> | 2011-06-03 21:44:37 -0700 |
---|---|---|
committer | Igor Babaev <igor@askmonty.org> | 2011-06-03 21:44:37 -0700 |
commit | 35c35858f859f23c23a414cdb21fdfe39d5de11c (patch) | |
tree | a4fab4e0c5cd29a8db2ed55e26436ab3bb1e1a41 /mysql-test/suite/funcs_1/views | |
parent | dd3b27834c271e9561fcde4658ce758c30c69334 (diff) | |
download | mariadb-git-35c35858f859f23c23a414cdb21fdfe39d5de11c.tar.gz |
Fixed bugs causing failures fot the funcs_1 test suite.
Uncommented the failing test cases.
Commented out the failing test case from parts.partition_repair_myisam.test.
The test case has to be changed to bear the same semantics as before mwl106.
Diffstat (limited to 'mysql-test/suite/funcs_1/views')
-rw-r--r-- | mysql-test/suite/funcs_1/views/views_master.inc | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/mysql-test/suite/funcs_1/views/views_master.inc b/mysql-test/suite/funcs_1/views/views_master.inc index ca0b7814068..5ab8d52629c 100644 --- a/mysql-test/suite/funcs_1/views/views_master.inc +++ b/mysql-test/suite/funcs_1/views/views_master.inc @@ -3831,12 +3831,10 @@ while ($num) INSERT INTO v1 VALUES (1002); # --error ER_NON_UPDATABLE_TABLE, ER_UPDATE_TABLE_USED -# !!! This queriesreturn wrong errors due to a bug in the code of mwl106 -# !!! Uncomment them when the bug is fixed -# --error ER_NON_UPDATABLE_TABLE -# UPDATE v1 SET f61=1007; -# --error ER_NON_UPDATABLE_TABLE -# DELETE FROM v1; + --error ER_NON_UPDATABLE_TABLE + UPDATE v1 SET f61=1007; + --error ER_NON_UPDATABLE_TABLE + DELETE FROM v1; DROP VIEW v1; dec $num; } |