You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@asterixdb.apache.org by dl...@apache.org on 2018/11/16 23:35:02 UTC

asterixdb git commit: [NO ISSUE] Less "branded" description of the query language, continued

Repository: asterixdb
Updated Branches:
  refs/heads/master 19e9d8290 -> 0c1d3c567


[NO ISSUE] Less "branded" description of the query language, continued

    Remove "branded" description of query language from Aggregate Functions

Change-Id: I35330ab3e86775d2b786a50d657f14b0edc28e13
Reviewed-on: https://asterix-gerrit.ics.uci.edu/3027
Sonar-Qube: Jenkins <je...@fulliautomatix.ics.uci.edu>
Tested-by: Jenkins <je...@fulliautomatix.ics.uci.edu>
Integration-Tests: Jenkins <je...@fulliautomatix.ics.uci.edu>
Contrib: Jenkins <je...@fulliautomatix.ics.uci.edu>
Reviewed-by: Dmitry Lychagin <dm...@couchbase.com>


Project: http://git-wip-us.apache.org/repos/asf/asterixdb/repo
Commit: http://git-wip-us.apache.org/repos/asf/asterixdb/commit/0c1d3c56
Tree: http://git-wip-us.apache.org/repos/asf/asterixdb/tree/0c1d3c56
Diff: http://git-wip-us.apache.org/repos/asf/asterixdb/diff/0c1d3c56

Branch: refs/heads/master
Commit: 0c1d3c5678152cf138879054ede3810c6b634a66
Parents: 19e9d82
Author: Simon Dew <Si...@couchbase.com>
Authored: Wed Nov 14 11:36:17 2018 +0000
Committer: Dmitry Lychagin <dm...@couchbase.com>
Committed: Fri Nov 16 15:34:43 2018 -0800

----------------------------------------------------------------------
 .../src/main/markdown/builtins/9_aggregate_sql.md           | 9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/asterixdb/blob/0c1d3c56/asterixdb/asterix-doc/src/main/markdown/builtins/9_aggregate_sql.md
----------------------------------------------------------------------
diff --git a/asterixdb/asterix-doc/src/main/markdown/builtins/9_aggregate_sql.md b/asterixdb/asterix-doc/src/main/markdown/builtins/9_aggregate_sql.md
index 423edf1..3fdb4dd 100644
--- a/asterixdb/asterix-doc/src/main/markdown/builtins/9_aggregate_sql.md
+++ b/asterixdb/asterix-doc/src/main/markdown/builtins/9_aggregate_sql.md
@@ -19,11 +19,10 @@
 
 ## <a id="AggregateFunctions">Aggregate Functions (Array Functions) </a> ##
 
-This section contains detailed descriptions of each SQL++ aggregate function (i.e., array function).
-Note that as described in the SQL++ query reference documentation, standard
-SQL aggregate functions (e.g., `MIN`, `MAX`, `SUM`, `COUNT`, and `AVG`)
-are not real functions in SQL++ but just syntactic sugars over corresponding
-SQL++ builtin aggregate functions (e.g., `ARRAY_MIN`, `ARRAY_MAX`,
+This section contains detailed descriptions of each aggregate function (i.e., array function) in the query language.
+Note that standard SQL aggregate functions (e.g., `MIN`, `MAX`, `SUM`, `COUNT`, and `AVG`)
+are not real functions in the query language, but just syntactic sugars over corresponding
+builtin aggregate functions (e.g., `ARRAY_MIN`, `ARRAY_MAX`,
 `ARRAY_SUM`, `ARRAY_COUNT`, and `ARRAY_AVG`).
 
 ### array_count ###