Skip to content
Permalink
Browse files
Make rowid_filter_innodb test stable
It was failing on mac-1012-bintar.
  • Loading branch information
spetrunia committed Sep 3, 2020
1 parent 0f080dd commit b795adc
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 0 deletions.
@@ -2139,6 +2139,12 @@ A.a+1000*B.a + 10000,
'filler-data-filler-data'
from
t11 A, t10 B;
analyze table t1 persistent for all;
Table Op Msg_type Msg_text
test.t1 analyze status Engine-independent statistics collected
test.t1 analyze Warning Engine-independent statistics are not collected for column 'el_index'
test.t1 analyze Warning Engine-independent statistics are not collected for column 'filler'
test.t1 analyze status Table is already up to date
# This must not use rowid_filter with key=el_index|el_index_60:
explain
select * from t1
@@ -377,6 +377,7 @@ select
'filler-data-filler-data'
from
t11 A, t10 B;
analyze table t1 persistent for all;

--echo # This must not use rowid_filter with key=el_index|el_index_60:
explain
@@ -2068,6 +2068,12 @@ A.a+1000*B.a + 10000,
'filler-data-filler-data'
from
t11 A, t10 B;
analyze table t1 persistent for all;
Table Op Msg_type Msg_text
test.t1 analyze status Engine-independent statistics collected
test.t1 analyze Warning Engine-independent statistics are not collected for column 'el_index'
test.t1 analyze Warning Engine-independent statistics are not collected for column 'filler'
test.t1 analyze status OK
# This must not use rowid_filter with key=el_index|el_index_60:
explain
select * from t1

0 comments on commit b795adc

Please sign in to comment.