You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+8-5Lines changed: 8 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -222,18 +222,21 @@ cargo test
222
222
# Run with logging
223
223
RUST_LOG=debug cargo test
224
224
225
-
# Run integration tests only
226
-
cargo test --test integration_tests
225
+
# Run the SQL logic tests only
226
+
cargo test --test sqllogictests
227
+
228
+
# Regenerate the expected .slt results after an intended change
229
+
SLT_COMPLETE=1 cargo test --test sqllogictests
227
230
```
228
231
229
232
The test suite includes:
230
233
- 27 unit tests covering execution plan generation and streaming
231
-
-36 integration tests covering query scenarios from simple to deeply nested, with both single and composite primary keys
234
+
-SQL logic tests (`tests/slt/*.slt`, run via [sqllogictest](https://github.com/risinglightdb/sqllogictest-rs)) covering query scenarios from simple to deeply nested, with both single and composite primary keys
232
235
233
236
## Compatibility
234
237
235
-
-**DataFusion**: 52.x
236
-
-**Rust**: 1.75+ (MSRV)
238
+
-**DataFusion**: 54.x
239
+
-**Rust**: 1.88+ (MSRV)
237
240
-**Arrow**: Compatible with DataFusion's Arrow version
0 commit comments