diff --git a/content/reference/sql/benchmarks/correctness.md b/content/reference/sql/benchmarks/correctness.md index 33fe32ed3..ebf2c6fb1 100644 --- a/content/reference/sql/benchmarks/correctness.md +++ b/content/reference/sql/benchmarks/correctness.md @@ -53,18 +53,18 @@ AND col3 IN (3,9,0))))) OR col4 <= 4.25 OR ((col3 = 5))) OR (((col0 > 0)) AND col0 > 6 AND (col4 >= 6.56))) ``` -Here are Dolt's sqllogictest results for version `1.19.0`. Tests that +Here are Dolt's sqllogictest results for version `1.20.0`. Tests that did not run could not complete due to a timeout earlier in the run. | Results | Count | |---------|---------| -| not ok | 567 | -| ok | 5936896 | +| not ok | 600 | +| ok | 5936863 | | Total Tests | 5937463 | |-------------|---------| -| Correctness Percentage | 99.9905 | +| Correctness Percentage | 99.9899 | |------------------------|---------|
diff --git a/content/reference/sql/benchmarks/latency.md b/content/reference/sql/benchmarks/latency.md index 51a4420b1..98d55c086 100644 --- a/content/reference/sql/benchmarks/latency.md +++ b/content/reference/sql/benchmarks/latency.md @@ -28,37 +28,37 @@ attempt to run as many queries as possible in a fixed 2 minute time window. The `Dolt` and `MySQL` columns show the median latency in milliseconds (ms) of each query during that 2 minute time window. -The Dolt version is `1.19.0`. +The Dolt version is `1.20.0`. -| Read Tests | MySQL | Dolt | Multiple | -|-------------------------|-------|--------|----------| -| covering\_index\_scan | 2.11 | 2.71 | 1.3 | -| groupby\_scan | 12.98 | 17.01 | 1.3 | -| index\_join | 1.32 | 4.41 | 3.3 | -| index\_join\_scan | 1.25 | 2.14 | 1.7 | -| index\_scan | 34.33 | 55.82 | 1.6 | -| oltp\_point\_select | 0.17 | 0.39 | 2.3 | -| oltp\_read\_only | 3.3 | 7.04 | 2.1 | -| select\_random\_points | 0.32 | 0.68 | 2.1 | -| select\_random\_ranges | 0.38 | 0.9 | 2.4 | -| table\_scan | 34.33 | 55.82 | 1.6 | -| types\_table\_scan | 74.46 | 158.63 | 2.1 | -| reads\_mean\_multiplier | | | 2.0 | +| Read Tests | MySQL | Dolt | Multiple | +|-------------------------|-------|-------|----------| +| covering\_index\_scan | 2.11 | 2.71 | 1.3 | +| groupby\_scan | 12.98 | 17.01 | 1.3 | +| index\_join | 1.32 | 4.57 | 3.5 | +| index\_join\_scan | 1.25 | 2.14 | 1.7 | +| index\_scan | 34.33 | 54.83 | 1.6 | +| oltp\_point\_select | 0.17 | 0.4 | 2.4 | +| oltp\_read\_only | 3.25 | 7.17 | 2.2 | +| select\_random\_points | 0.32 | 0.68 | 2.1 | +| select\_random\_ranges | 0.38 | 0.9 | 2.4 | +| table\_scan | 34.33 | 54.83 | 1.6 | +| types\_table\_scan | 74.46 | 155.8 | 2.1 | +| reads\_mean\_multiplier | | | 2.0 | | Write Tests | MySQL | Dolt | Multiple | |--------------------------|-------|-------|----------| | bulk\_insert | 0.001 | 0.001 | 1.0 | -| oltp\_delete\_insert | 4.41 | 5.28 | 1.2 | -| oltp\_insert | 2.22 | 2.66 | 1.2 | -| oltp\_read\_write | 6.67 | 13.46 | 2.0 | -| oltp\_update\_index | 2.35 | 2.61 | 1.1 | -| oltp\_update\_non\_index | 2.3 | 2.57 | 1.1 | -| oltp\_write\_only | 3.36 | 6.55 | 1.9 | -| types\_delete\_insert | 4.49 | 5.67 | 1.3 | +| oltp\_delete\_insert | 4.41 | 5.37 | 1.2 | +| oltp\_insert | 2.18 | 2.66 | 1.2 | +| oltp\_read\_write | 6.55 | 13.46 | 2.1 | +| oltp\_update\_index | 2.22 | 2.66 | 1.2 | +| oltp\_update\_non\_index | 2.22 | 2.61 | 1.2 | +| oltp\_write\_only | 3.25 | 6.55 | 2.0 | +| types\_delete\_insert | 4.49 | 5.77 | 1.3 | | writes\_mean\_multiplier | | | 1.4 | -| Overall Mean Multiple | 1.7 | +| Overall Mean Multiple | 1.8 | |-----------------------|-----|