18 lines
345 B
Markdown
18 lines
345 B
Markdown
# OCAML SQL PARSER
|
|
|
|
using [this grammar](https://ronsavage.github.io/SQL/sql-2003-2.bnf.html)
|
|
|
|
resource on iceberg table format [here](https://www.dremio.com/resources/guides/apache-iceberg-an-architectural-look-under-the-covers/)
|
|
|
|
## Dune
|
|
|
|
```
|
|
eval $(opam env --switch=default)
|
|
```
|
|
|
|
At the root of the project :
|
|
|
|
```
|
|
dune test
|
|
dune build
|
|
``` |