Crate qrlew

source ·
Expand description

§Qrlew framework (by Sarus)

Open source SQL manipulation framework written in Rust

§What is Qrlew?

Qrlew is an open source library that aims to parse and compile SQL queries into an Intermediate Representation (IR) that is well-suited for various rewriting tasks. Although it was originally designed for privacy-focused applications, it can be utilized for a wide range of purposes.

§SQL Query IR

Qrlew transforms a SQL query into a combination of simple operations such as Map, Reduce and Join that are applied to Tables. This representation simplifies the process of rewriting queries and reduces dependencies on the diverse range of syntactic constructs present in SQL.

§Type Inference Engine

Differential Privacy (DP) guaranrtees are hard to obtain without destroying too much information. In many mechanisms having prior bounds on values can improve the utility of DP results dramatically. By propagating types cleverly, Qrlew can returns bounds for all values.

§Differential Privacy compiler

Qrlew can compile SQL queries into Differentially Private ones. The process is inspired by Wilson et al. 2020. The complexity of the compilation process makes Qrlew IR very useful at delivering clean, readable and reliable code.

Re-exports§

Modules§

  • Expose sqlparser::ast as part of qrlew SQL Abstract Syntax Tree (AST) types
  • Builder utilities
  • The data types used in Qrlew
  • Debugging utilities
  • Expose sqlparser::ast as part of qrlew
  • Tools for queries from one dialect into another A specific Dialect is a struct holding: - a method to provide a sqlparser::Dialect for the parsing - methods varying from dialect to dialect regarding the conversion from AST to Expr+Relation and vice-versa
  • Methods to transform Relations into differentially private ones
  • Methods to display representations of Relations and Exprs
  • Encoding utilities
  • Expr definition and manipulation
  • Hierarchy structure
  • Utilities to run tests on real data
  • Naming utilities
  • Expose sqlparser::ast as part of qrlew SQL Parser
  • Methods to define Relations’ Privacy Unit and propagate it
  • Relation definition and manipulation
  • Given a Relation representing a computaion on a sampled table, a table (representing the schema of original dataset) and a weight representing
  • SQL parsing and conversion into Relation
  • Expose sqlparser::ast as part of qrlew SQL Tokenizer
  • Type utilities
  • Some utilities to ease the implementation of Visitor / Acceptor in rust