~jlukas79/+junk/mysql-server

« back to all changes in this revision

Viewing changes to mysql-test/suite/falcon_team/t/falcon_bug_30826.test

manual merge 6.0-main --> 6.0-bka-review

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
INSERT INTO t1 (`id`, `field1`) VALUES('5','value5');
28
28
INSERT INTO t1 (`id`, `field1`) VALUES('7','value7');
29
29
 
 
30
#at the moment, alter table returns not implemented, will return 0 after WL#4176 is done
 
31
--disable_result_log
 
32
--error 0,ER_CHECK_NOT_IMPLEMENTED
30
33
ALTER TABLE t1 OPTIMIZE PARTITION `p1`;
 
34
--enable_result_log
31
35
 
32
36
# ----------------------------------------------------- #
33
37
# --- Test 2 - optimize without records                --- #
40
44
   PARTITION BY Hash (id) PARTITIONS 4;
41
45
 
42
46
# This caused Falcon to crash...
 
47
#at the moment, alter table returns not implemented, will return 0 after WL#4176 is done
 
48
--disable_result_log
 
49
--error 0,ER_CHECK_NOT_IMPLEMENTED
43
50
ALTER TABLE t1 OPTIMIZE PARTITION `p1`;
 
51
--enable_result_log
 
52
 
44
53
 
45
54
# ----------------------------------------------------- #
46
55
# --- Final cleanup                                 --- #