sxt-proof-of-sql
sxt-proof-of-sql copied to clipboard
Space and Time | Proof of SQL
# Background and Motivation Currently, we have not implemented support for columns with null values. This is a very useful and ubiquitous primitive for any database engine. # Changes Required...
Please be sure to look over the pull request guidelines here: https://github.com/spaceandtimelabs/sxt-proof-of-sql/blob/main/CONTRIBUTING.md#submit-pr. # Please go through the following checklist - [x] The PR title and commit messages adhere to guidelines...
Please be sure to look over the pull request guidelines here: https://github.com/spaceandtimelabs/sxt-proof-of-sql/blob/main/CONTRIBUTING.md#submit-pr. # Please go through the following checklist - [x] The PR title and commit messages adhere to guidelines...
Hi,I paid attention to zksql when I was looking through the paper recently and reviewed TPC- H based on the code in the paper, I found that performing a join...
Please be sure to look over the pull request guidelines here: https://github.com/spaceandtimelabs/sxt-proof-of-sql/blob/main/CONTRIBUTING.md#submit-pr. # Please go through the following checklist - [x] The PR title and commit messages adhere to guidelines...
# Rationale for this change This PR adds support for `FixedSizeBinary` > This PR is not meant to close #229 but serves as initial support. We should use this as...
# Background and Motivation This issue is a subtask in https://github.com/spaceandtimelabs/sxt-proof-of-sql/issues/235. In short since we plan to add more SQL features we plan to switch to the [`sqlparser`](https://crates.io/crates/sqlparser) crate which...
# Background and Motivation Currently, the `Scalar` trait requires various conversions using the `From` and `Into` traits. Some of these are confusing, while others are clear. In general, the rule...
# Background and Motivation Currently, we have an in-house parser that is built on the `lalrpop` parser-generator. This has been good while the supported syntax has been simple. However, as...
# Background and Motivation Many data are binary blobs. In particular, the EVM address and hash types are 20 bytes and 32 bytes respectively. We should support these natively within...