From b961069595c571d1f2d49de07bf2d3208fec5005 Mon Sep 17 00:00:00 2001 From: Andy Grove Date: Mon, 3 Sep 2018 10:38:45 -0600 Subject: [PATCH] Update README.md --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index d3e627b6..e3f20c9a 100644 --- a/README.md +++ b/README.md @@ -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 } -``` \ No newline at end of file +``` + +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.