summaryrefslogtreecommitdiff
path: root/storage/connect/mysql-test/connect/r
diff options
context:
space:
mode:
authorMonty <monty@mariadb.org>2021-10-09 16:16:10 +0300
committerSergei Petrunia <sergey@mariadb.com>2023-02-02 20:49:35 +0300
commit956980971f98e1eb451e71856fe823470a5d1d32 (patch)
tree369d47e8f78d05c313d42e24492daaeb15c24e91 /storage/connect/mysql-test/connect/r
parent6fa7451759e0832cc13a0e47a8300292b96bdb75 (diff)
downloadmariadb-git-956980971f98e1eb451e71856fe823470a5d1d32.tar.gz
Update cost for hash and cached joins
The old code did not't correctly add TIME_FOR_COMPARE to rows that are part of the scan that will be compared with the attached where clause. Now the cost calculation for hash join and full join cache join are identical except for HASH_FANOUT (10%) The cost for a join with keys is now also uniform. The total cost for a using a key for lookup is calculated in one place as: (cost_of_finding_rows_through_key(records) + records/TIME_FOR_COMPARE)* record_count_of_previous_row_combinations + startup_cost startup_cost is the cost of a creating a temporary table (if needed) Best_cost now includes the cost of comparing all WHERE clauses and also cost of joining with previous row combinations. Other things: - Optimizer trace is now printing the total costs, including testing the WHERE clause (TIME_FOR_COMPARE) and comparing with all previous rows. - In optimizer trace, include also total cost of query together with the final join order. This makes it easier to find out where the cost was calculated. - Old code used filter even if the cost for it was higher than not using a filter. This is not corrected. - When rebasing on 10.11, I noticed some changes to access_cost_factor calculation. These changes was not picked as the coming changes to filtering will make that code obsolete.
Diffstat (limited to 'storage/connect/mysql-test/connect/r')
-rw-r--r--storage/connect/mysql-test/connect/r/index.result8
1 files changed, 4 insertions, 4 deletions
diff --git a/storage/connect/mysql-test/connect/r/index.result b/storage/connect/mysql-test/connect/r/index.result
index baebf1f1ebe..2197f9bcf1e 100644
--- a/storage/connect/mysql-test/connect/r/index.result
+++ b/storage/connect/mysql-test/connect/r/index.result
@@ -98,16 +98,16 @@ sexe genre
2 Feminin
SELECT nom, prenom, genre FROM t1 NATURAL JOIN t2 LIMIT 10;
nom prenom genre
-ESCOURCHE BENEDICTE Feminin
-VICENTE LAURENCE Feminin
NICOLAS ROGER Masculin
-TESSEREAU MARIE HELENE Feminin
MOGADOR ALAIN Masculin
CHAUSSEE ERIC DENIS Masculin
MAILLOT GEORGES Masculin
-CAMILLE NADINE Feminin
BRUYERES JEAN MARC Masculin
LONES GERARD Masculin
+CROISILLES DOMINIQUE Masculin
+SEYSSAUD GERARD Masculin
+QUINET OLIVIER Masculin
+KOMITAS YVES Masculin
#
# Another table
#