Crate mz_sqllogictest

Source
Expand description

A driver for sqllogictest, a SQL correctness testing framework.

sqllogictest is developed as part of the SQLite project. Details can be found on the SQLite website: https://www.sqlite.org/sqllogictest/doc/trunk/about.wiki

This crate implements a parser and runner for sqllogictest files. The parser is generic, but the runner is specific to Materialize.

Modules§

ast
Abstract syntax tree nodes for sqllogictest.
parser
A parser for sqllogictest.
runner
The Materialize-specific runner for sqllogictest.
util