From 0320d37d229b5b837defb33783600c3abcad41c7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Wojciech=20Ku=C5=BAmi=C5=84ski?= <45849042+woojtek@users.noreply.github.com> Date: Tue, 4 Aug 2020 21:14:18 +0200 Subject: [PATCH 1/3] Update README.md --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index e595e540..21e87b5d 100644 --- a/README.md +++ b/README.md @@ -396,7 +396,6 @@ OctoSQL sends application telemetry on each run to help us gauge user interest a You can turn it off (though please don't) by setting the **OCTOSQL_TELEMETRY** environment variable to 0. Telemetry is also fully printed in the output log of OctoSQL, if you want to see what precisely is being sent. ## Roadmap -TODO - well, we need to update this big time - Additional Datasources. - SQL Constructs: - JSON Query From b8dd2918d24dbd43b6047816ea1811a3a1e9eb6b Mon Sep 17 00:00:00 2001 From: Jakub Martin Date: Tue, 4 Aug 2020 23:13:37 +0200 Subject: [PATCH 2/3] Adding new SQL constructs --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 21e87b5d..28e0a3e8 100644 --- a/README.md +++ b/README.md @@ -340,7 +340,7 @@ Documentation for the available table valued functions: https://github.com/cube2 The SQL dialect documentation: TODO ;) in short though: -Available SQL constructs: Select, Where, Order By, Group By, Offset, Limit, Left Join, Right Join, Inner Join, Distinct, Union, Union All, Subqueries, Operators, Table Valued Functions. +Available SQL constructs: Select, Where, Order By, Group By, Offset, Limit, Left Join, Right Join, Inner Join, Distinct, Union, Union All, Subqueries, Operators, Table Valued Functions, Trigger. Available SQL types: Int, Float, String, Bool, Time, Duration, Tuple (array), Object (e.g. JSON) From 71df03d4f03c2562d76e2816e4a9e15ce806d66b Mon Sep 17 00:00:00 2001 From: Jakub Martin Date: Tue, 4 Aug 2020 23:14:14 +0200 Subject: [PATCH 3/3] Adding new SQL constructs --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 28e0a3e8..c8119ac2 100644 --- a/README.md +++ b/README.md @@ -340,7 +340,7 @@ Documentation for the available table valued functions: https://github.com/cube2 The SQL dialect documentation: TODO ;) in short though: -Available SQL constructs: Select, Where, Order By, Group By, Offset, Limit, Left Join, Right Join, Inner Join, Distinct, Union, Union All, Subqueries, Operators, Table Valued Functions, Trigger. +Available SQL constructs: Select, Where, Order By, Group By, Offset, Limit, Left Join, Right Join, Inner Join, Distinct, Union, Union All, Subqueries, Operators, Table Valued Functions, Trigger, Common Table Expressions. Available SQL types: Int, Float, String, Bool, Time, Duration, Tuple (array), Object (e.g. JSON)