diff options
Diffstat (limited to 'mysql-test/r/table_value_constr.result')
-rw-r--r-- | mysql-test/r/table_value_constr.result | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/mysql-test/r/table_value_constr.result b/mysql-test/r/table_value_constr.result index 39caba331ef..67981571707 100644 --- a/mysql-test/r/table_value_constr.result +++ b/mysql-test/r/table_value_constr.result @@ -744,7 +744,7 @@ explain extended select * from t1 where a in (values (1)); id select_type table type possible_keys key key_len ref rows filtered Extra 1 PRIMARY <subquery3> ALL distinct_key NULL NULL NULL 2 100.00 -1 PRIMARY t1 ALL NULL NULL NULL NULL 6 100.00 Using where; Using join buffer (flat, BNL join) +1 PRIMARY t1 hash_ALL NULL #hash#$hj 5 tvc_0.1 6 100.00 Using where; Using join buffer (flat, BNLH join) 3 MATERIALIZED <derived2> ALL NULL NULL NULL NULL 2 100.00 2 DERIVED NULL NULL NULL NULL NULL NULL NULL NULL No tables used Warnings: @@ -753,7 +753,7 @@ explain extended select * from t1 where a in (select * from (values (1)) as tvc_0); id select_type table type possible_keys key key_len ref rows filtered Extra 1 PRIMARY <subquery2> ALL distinct_key NULL NULL NULL 2 100.00 -1 PRIMARY t1 ALL NULL NULL NULL NULL 6 100.00 Using where; Using join buffer (flat, BNL join) +1 PRIMARY t1 hash_ALL NULL #hash#$hj 5 tvc_0.1 6 100.00 Using where; Using join buffer (flat, BNLH join) 2 MATERIALIZED <derived3> ALL NULL NULL NULL NULL 2 100.00 3 DERIVED NULL NULL NULL NULL NULL NULL NULL NULL No tables used Warnings: @@ -979,7 +979,7 @@ explain extended select * from t1 where a = any (values (1),(2)); id select_type table type possible_keys key key_len ref rows filtered Extra 1 PRIMARY <subquery3> ALL distinct_key NULL NULL NULL 2 100.00 -1 PRIMARY t1 ALL NULL NULL NULL NULL 6 100.00 Using where; Using join buffer (flat, BNL join) +1 PRIMARY t1 hash_ALL NULL #hash#$hj 5 tvc_0.1 6 100.00 Using where; Using join buffer (flat, BNLH join) 3 MATERIALIZED <derived2> ALL NULL NULL NULL NULL 2 100.00 2 DERIVED NULL NULL NULL NULL NULL NULL NULL NULL No tables used Warnings: @@ -988,7 +988,7 @@ explain extended select * from t1 where a = any (select * from (values (1),(2)) as tvc_0); id select_type table type possible_keys key key_len ref rows filtered Extra 1 PRIMARY <subquery2> ALL distinct_key NULL NULL NULL 2 100.00 -1 PRIMARY t1 ALL NULL NULL NULL NULL 6 100.00 Using where; Using join buffer (flat, BNL join) +1 PRIMARY t1 hash_ALL NULL #hash#$hj 5 tvc_0.1 6 100.00 Using where; Using join buffer (flat, BNLH join) 2 MATERIALIZED <derived3> ALL NULL NULL NULL NULL 2 100.00 3 DERIVED NULL NULL NULL NULL NULL NULL NULL NULL No tables used Warnings: |