Skip to content

Releases: mutable-org/mutable

v0.0.188: [Benchmark] Add CLI argument `num_runs`

21 Feb 19:52
c3d0e3f
Compare
Choose a tag to compare
Previously, the number of runs had to be adjusted by changing the
corresponding global variable in the script.  This can now be done via
CLI argument.  The default is still 5 runs per system, case, and
configuration.

v0.0.187: [Benchmark] Support index field in connectors

19 Feb 14:19
68fce79
Compare
Choose a tag to compare
Index support added for mutable, DuckDB, and PostgreSQL.  Notably, HyPer
is not yet supported as index support is currently disabled in
`tableauhyperapi`.  The method field is ignored by all databases but
mutable.

v0.0.186: [Benchmark] Add date tables in phys-cost-models

19 Feb 13:38
906c14b
Compare
Choose a tag to compare
Tables for `DATE`, `DATETIME`, and `DECIMAL(10,2)` were added.

v0.0.185: [WasmV8] Fix `read_result_set()` without projection present.

15 Feb 13:42
6f18260
Compare
Choose a tag to compare
Do not assume a projection operator to be present in the logical
plan. Instead insist that it is present if a constant occurs which
was omitted in the result set.

v0.0.184: [IR] Fix `QueryGraph`s swap method.

13 Feb 19:33
1b61c8f
Compare
Choose a tag to compare

v0.0.183: [IR] Fix dumping nested `QueryGraph`s.

13 Feb 17:14
e9291cf
Compare
Choose a tag to compare
Nested queries in SQL require an alias but internally created nested
queries, e.g. due to HAVING, do not have to.

v0.0.182

13 Feb 00:38
1c253e5
Compare
Choose a tag to compare
[Wasm] Add `get_base_address()` helper function

v0.0.181

12 Feb 22:47
c4e9d98
Compare
Choose a tag to compare
[WasmDSL] Support `NChar` in `convert()`

v0.0.180: [Schema] Add `is_valid` flag for indexes

12 Feb 21:42
c0eeb0b
Compare
Choose a tag to compare
We currently do not support automatic updates on indexes.  To ensure
correct query results, inserts on tables will now invalidate all indexes
on that table such that the indexes are no longer used to answer queries.

v0.0.179

09 Feb 00:21
6a3a870
Compare
Choose a tag to compare
[Wasm] Fix #217: Handle duplicated build keys.