Github user DaveBirdsall commented on a diff in the pull request:
https://github.com/apache/trafodion/pull/1683#discussion_r208396395
--- Diff: docs/sql_reference/src/asciidoc/_chapters/sql_clauses.adoc ---
@@ -1053,8 +1053,7 @@ expressions in each item must be the same as the
number of value columns
in the column list.
+
In the example TRANSPOSE A,B,C AS V, the items are A,B, and C, and the
-value column is V. This form can be thought of as a shorter way of writing
TRANSPOSE
-(A),(B),(C) AS (V).
+value column is V. This form can be thought of as a shorter way of writing
TRANSPOSE (A),(B),\(C) AS (V).
--- End diff --
Not sure why the slash is before "(C)"; I don't think it is correct. Or is
the slash an escape? Maybe "(C)" is interpreted as the copyright symbol by the
rendering software?
---