This is an automated email from the ASF dual-hosted git repository.
asf-ci-deploy pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/calcite-site.git
The following commit(s) were added to refs/heads/main by this push:
new 7a6f87dce Website deployed from
calcite@0291e1eeb4c5e01dccbac14e1a6eeeb79d87282b
7a6f87dce is described below
commit 7a6f87dce9545b691b832497454de0e22ea71cdf
Author: rubenada <[email protected]>
AuthorDate: Mon Oct 9 06:58:41 2023 +0000
Website deployed from calcite@0291e1eeb4c5e01dccbac14e1a6eeeb79d87282b
---
docs/adapter.html | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/docs/adapter.html b/docs/adapter.html
index d0849a700..1892d0fb2 100644
--- a/docs/adapter.html
+++ b/docs/adapter.html
@@ -116,7 +116,7 @@ presenting the data as tables within a schema.</p>
<h3 id="other-language-interfaces">Other language interfaces</h3>
<ul>
- <li>Piglet (<a
href="/javadocAggregate/org/apache/calcite/piglet/package-summary.html">calcite-piglet</a>)
runs queries in a subset of <a
href="https://pig.apache.org/docs/r0.7.0/piglatin_ref1.html">Pig Latin</a>
+ <li>Piglet (<a
href="/javadocAggregate/org/apache/calcite/piglet/package-summary.html">calcite-piglet</a>)
runs queries in a subset of <a
href="https://pig.apache.org/docs/latest/basic.html">Pig Latin</a>
</li>
</ul>
@@ -147,7 +147,7 @@ Connections can be local or remote (JSON over HTTP or
Protobuf over HTTP).</p>
<p>where <code class="language-plaintext highlighter-rouge">property</code>,
<code class="language-plaintext highlighter-rouge">property2</code> are
properties as described below.
(Connect strings are compliant with OLE DB Connect String syntax,
as implemented by Avatica’s
-<a
href="/avatica/apidocs/org/apache/calcite/avatica/ConnectStringParser.html">ConnectStringParser</a>.)</p>
+<a
href="/avatica/javadocAggregate/org/apache/calcite/avatica/ConnectStringParser.html">ConnectStringParser</a>.)</p>
<h2 id="jdbc-connect-string-parameters">JDBC connect string parameters</h2>
@@ -503,7 +503,7 @@ over the previous 2 rows, of 4 rows with values 4, 7, 2 and
3:</p>
to gather together records into sets. The built-in grouped window functions
are <code class="language-plaintext highlighter-rouge">HOP</code>, <code
class="language-plaintext highlighter-rouge">TUMBLE</code> and <code
class="language-plaintext highlighter-rouge">SESSION</code>.
You can define additional functions by implementing
-<a
href="/javadocAggregate/org/apache/calcite/sql/fun/SqlGroupedWindowFunction.html"><code>interface
SqlGroupedWindowFunction</code></a>.</p>
+<a
href="/javadocAggregate/org/apache/calcite/sql/SqlGroupedWindowFunction.html"><code>interface
SqlGroupedWindowFunction</code></a>.</p>
<h3 id="table-functions-and-table-macros">Table functions and table macros</h3>
@@ -655,7 +655,7 @@ and covering conventional relational algebra) are
<a
href="/javadocAggregate/org/apache/calcite/rel/logical/LogicalProject.html"><code>LogicalProject</code></a>
and so forth. Any given adapter will have counterparts for the operations that
its engine can implement efficiently; for example, the Cassandra adapter has
-<a
href="/javadocAggregate/org/apache/calcite/rel/cassandra/CassandraProject.html"><code>CassandraProject</code></a>
+<a
href="/javadocAggregate/org/apache/calcite/adapter/cassandra/CassandraProject.html"><code>CassandraProject</code></a>
but there is no <code class="language-plaintext
highlighter-rouge">CassandraJoin</code>.</p>
<p>You can define your own sub-class of <code class="language-plaintext
highlighter-rouge">RelNode</code> to add a new operator, or
@@ -748,7 +748,7 @@ Each kind of metadata has an interface with (usually) one
method.
For example, selectivity is defined by
<a
href="/javadocAggregate/org/apache/calcite/rel/metadata/RelMdSelectivity.html"><code>class
RelMdSelectivity</code></a>
and the method
-<a
href="/javadocAggregate/org/apache/calcite/rel/metadata/RelMetadataQuery.html#getSelectivity-org.apache.calcite.rel.RelNode-org.apache.calcite.rex.RexNode-"><code>getSelectivity(RelNode
rel, RexNode predicate)</code></a>.</p>
+<a
href="/javadocAggregate/org/apache/calcite/rel/metadata/RelMetadataQuery.html#getSelectivity(org.apache.calcite.rel.RelNode,org.apache.calcite.rex.RexNode)"><code>getSelectivity(RelNode
rel, RexNode predicate)</code></a>.</p>
<p>There are many built-in kinds of metadata, including
<a
href="/javadocAggregate/org/apache/calcite/rel/metadata/RelMdCollation.html">collation</a>,