Update README.md

This commit is contained in:
Andy Grove 2018-09-03 10:38:45 -06:00 committed by GitHub
parent 87a576563b
commit b961069595
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -19,4 +19,6 @@ This outputs
```rust
AST: SQLSelect { projection: [SQLIdentifier("a"), SQLIdentifier("b"), SQLLiteralLong(123), SQLFunction { id: "myfunc", args: [SQLIdentifier("b")] }], relation: Some(SQLIdentifier("table_1")), selection: Some(SQLBinaryExpr { left: SQLBinaryExpr { left: SQLIdentifier("a"), op: Gt, right: SQLIdentifier("b") }, op: And, right: SQLBinaryExpr { left: SQLIdentifier("b"), op: Lt, right: SQLLiteralLong(100) } }), order_by: Some([SQLOrderBy { expr: SQLIdentifier("a"), asc: false }, SQLOrderBy { expr: SQLIdentifier("b"), asc: true }]), group_by: None, having: None, limit: None }
```
```
Please get involved in helping build first class SQL support in Rust by filing issues for missing features (there are plenty!) and create pull requests.