update docs

This commit is contained in:
Andy Grove 2018-09-03 14:58:19 -06:00
parent 21540817e5
commit 401f01cb41
2 changed files with 6 additions and 0 deletions

View file

@ -44,6 +44,10 @@ I am a fan of this design pattern over parser generators for the following reaso
- Debugging is much easier with hand-written code
- It is far easier to extend and make dialect-specific extensions compared to using a parser generator
## Supporting custom SQL dialects
This is a work in progress but I started some notes on [writing a custom SQL parser](docs/custom_sql_parser.md).
## Contributing
Contributors are welcome! Please see the [current issues](https://github.com/andygrove/sqlparser-rs/issues) and feel free to file more!

View file

@ -4,3 +4,5 @@ I have explored many different ways of building this library to make it easy to
The concept is simply to write a new parser that delegates to the ANSI parser so that as much as possible of the core functionality can be re-used.
For an example of this, see the [DataFusion](https://github.com/datafusion-rs/datafusion) project.