risinglightdb / sqllogictest-rs

Sqllogictest parser and runner in Rust.
Apache License 2.0
167 stars 42 forks source link

fix: inherit configuration in `run_parallel` #215

Closed BugenZhao closed 2 weeks ago

BugenZhao commented 2 weeks ago

In Runner, we create a new runner for each parallelism without reusing self.conn, which is not good. What's worse is that we don't inherit other fields from self, resulting in add_label not taking effect when running in parallel.