From ae1c69034e1a6924bceb54d4eb6eb8b14919d84e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Duarte?= Date: Fri, 11 Nov 2022 21:15:05 +0000 Subject: [PATCH] Fix broken DataFusion link (#703) --- docs/custom_sql_parser.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/custom_sql_parser.md b/docs/custom_sql_parser.md index 225fc862..f7c9635f 100644 --- a/docs/custom_sql_parser.md +++ b/docs/custom_sql_parser.md @@ -6,5 +6,5 @@ The concept is simply to write a new parser that delegates to the ANSI parser so I also plan on building in specific support for custom data types, where a lambda function can be parsed to the parser to parse data types. -For an example of this, see the [DataFusion](https://github.com/datafusion-rs/datafusion) project. +For an example of this, see the [DataFusion](https://github.com/apache/arrow-datafusion) project and its [query planner] (https://github.com/apache/arrow-datafusion/tree/master/datafusion/sql).