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 927e8416 Website deployed from
calcite-avatica@224e3dd56657d46d9e8264c476533d9fb6950c2c
927e8416 is described below
commit 927e841693de4ec239be1af987ddb9f7b55ac149
Author: F21 <[email protected]>
AuthorDate: Sat Dec 24 02:08:28 2022 +0000
Website deployed from
calcite-avatica@224e3dd56657d46d9e8264c476533d9fb6950c2c
---
avatica/docs/client_reference.html | 25 +++++++++++++++++++++++++
avatica/docs/index.html | 6 +++---
avatica/docs/security.html | 2 ++
3 files changed, 30 insertions(+), 3 deletions(-)
diff --git a/avatica/docs/client_reference.html
b/avatica/docs/client_reference.html
index e2b8f5d8..046fc566 100644
--- a/avatica/docs/client_reference.html
+++ b/avatica/docs/client_reference.html
@@ -864,6 +864,31 @@ necessary when using HTTPS.</p>
<dd>
<p><em>Required</em>: Only if <code class="language-plaintext
highlighter-rouge">truststore</code> was provided.</p>
</dd>
+ <dt><strong><a name="fetch_size"
href="#fetch_size">fetch_size</a></strong></dt>
+ <dd>
+ <p><em>Description</em>: The number of rows to fetch. If
+ <a
href="https://docs.oracle.com/javase/8/docs/api/java/sql/Statement.html#setFetchSize-int-">
+ Statement:setFetchSize</a> is set, that value overrides fetch_size.</p>
+ </dd>
+ <dd>
+ <p><em>Default</em>: <code class="language-plaintext
highlighter-rouge">100</code>.</p>
+ </dd>
+ <dd>
+ <p><em>Required</em>: No.</p>
+ </dd>
+ <dt><strong><a name="transparent_reconnection"
href="#transparent_reconnection">transparent_reconnection</a></strong></dt>
+ <dd>
+ <p><em>Description</em>: The Java client versions between 1.5.0 and 1.20.0
transparently re-created
+the Connection object on the client side if it expired from the server cache.
This behaviour broke
+JDBC compliance and could cause data loss for transactional write workloads,
and has been removed
+in 1.21.0. Setting this property to <code class="language-plaintext
highlighter-rouge">true</code> restores the 1.20.0 behaviour.</p>
+ </dd>
+ <dd>
+ <p><em>Default</em>: <code class="language-plaintext
highlighter-rouge">false</code>.</p>
+ </dd>
+ <dd>
+ <p><em>Required</em>: No.</p>
+ </dd>
</dl>
diff --git a/avatica/docs/index.html b/avatica/docs/index.html
index 1cbc961b..6fbf9e04 100644
--- a/avatica/docs/index.html
+++ b/avatica/docs/index.html
@@ -870,11 +870,11 @@ highly welcomed!</p>
<h3 id="apache-phoenix-database-adapter-for-python">Apache Phoenix database
adapter for Python</h3>
<ul>
- <li><a href="https://bitbucket.org/lalinsky/python-phoenixdb">Home
page</a></li>
+ <li><a href="https://phoenix.apache.org/python.html">Home page</a></li>
<li>Language: Python</li>
<li><em>License</em>: <a
href="https://www.apache.org/licenses/LICENSE-2.0">Apache 2.0</a></li>
- <li>Avatica version 1.2.0 to 1.6.0</li>
- <li><em>Maintainer</em>: Lukáš Lalinský</li>
+ <li>Avatica version 1.2.0 onwards</li>
+ <li><em>Maintainer</em>: Apache Phoenix community</li>
</ul>
<h3 id="javascript-binding-to-calcite-avatica-server">JavaScript binding to
Calcite Avatica Server</h3>
diff --git a/avatica/docs/security.html b/avatica/docs/security.html
index eb7b7f07..e3fb0aa3 100644
--- a/avatica/docs/security.html
+++ b/avatica/docs/security.html
@@ -995,6 +995,8 @@ passwords to validate that the JKS files have not been
tampered with.</p>
<span class="k">new</span> <span class="nf">File</span><span
class="o">(</span><span class="s">"/avatica/truststore.jks"</span><span
class="o">),</span> <span class="s">"MyTruststorePassword"</span><span
class="o">)</span>
<span class="o">.</span><span class="na">build</span><span
class="o">();</span></code></pre></figure>
+<p>If you wish to change the default <code class="language-plaintext
highlighter-rouge">JKS</code> keystore format to for example, <code
class="language-plaintext highlighter-rouge">BCFKS</code> use the method
+<code class="language-plaintext highlighter-rouge">withTls(File, String, File,
String, String)</code> to provide the keystore format as a fifth parameter.</p>