This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/arrow-adbc.git


The following commit(s) were added to refs/heads/asf-site by this push:
     new 9876757a2 publish documentation
9876757a2 is described below

commit 9876757a2c9fc873a3a448febbed8990e07468d3
Author: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
AuthorDate: Fri Aug 29 19:04:23 2025 +0000

    publish documentation
---
 main/_sources/driver/snowflake.rst.txt                |   6 ++++++
 main/driver/snowflake.html                            |   5 +++++
 main/genindex.html                                    |   2 ++
 main/objects.inv                                      | Bin 4001 -> 4017 bytes
 main/python/api/adbc_driver_snowflake.html            |   9 ++++++++-
 main/r/adbcbigquery/pkgdown.yml                       |   2 +-
 main/r/adbcdrivermanager/pkgdown.yml                  |   2 +-
 .../reference/adbc_connection_init.html               |   4 ++--
 .../reference/adbc_database_init.html                 |   2 +-
 .../reference/adbc_statement_init.html                |   6 +++---
 main/r/adbcdrivermanager/search.json                  |   2 +-
 main/r/adbcflightsql/pkgdown.yml                      |   2 +-
 main/r/adbcpostgresql/pkgdown.yml                     |   2 +-
 main/r/adbcsnowflake/pkgdown.yml                      |   2 +-
 main/r/adbcsqlite/pkgdown.yml                         |   2 +-
 main/searchindex.js                                   |   2 +-
 16 files changed, 35 insertions(+), 15 deletions(-)

diff --git a/main/_sources/driver/snowflake.rst.txt 
b/main/_sources/driver/snowflake.rst.txt
index 9fd428025..15d42c1e5 100644
--- a/main/_sources/driver/snowflake.rst.txt
+++ b/main/_sources/driver/snowflake.rst.txt
@@ -351,6 +351,8 @@ These options map 1:1 with the Snowflake `Config object 
<https://pkg.go.dev/gith
     - ``auth_okta``: Use a native Okta URL to perform SSO authentication using 
Okta
     - ``auth_jwt``: Use a provided JWT to perform authentication.
     - ``auth_mfa``: Use a username and password with MFA.
+    - ``auth_pat``: Use a programmatic access token for authentication.
+    - ``auth_wif``: Use Workload Identity Federation for authentication.
 
 ``adbc.snowflake.sql.client_option.auth_token``
     If using OAuth or another form of authentication, this option is how you 
can
@@ -434,6 +436,10 @@ These options map 1:1 with the Snowflake `Config object 
<https://pkg.go.dev/gith
     When ``true``, the ID token is cached in the credential manager. Defaults
     to ``true`` on Windows/OSX, ``false`` on Linux.
 
+``adbc.snowflake.sql.client_option.identity_provider``
+    When using ``auth_wif`` for workload identity federation authentication, 
this
+    must be set to the appropriate identity provider.
+
 ``adbc.snowflake.sql.client_option.use_high_precision``
     When ``true``, fixed-point snowflake columns with the type ``NUMBER``
     will be returned as ``Decimal128`` type Arrow columns using the precision
diff --git a/main/driver/snowflake.html b/main/driver/snowflake.html
index e618f3db1..966794cd1 100644
--- a/main/driver/snowflake.html
+++ b/main/driver/snowflake.html
@@ -748,6 +748,8 @@ connection URI.</p>
 <li><p><code class="docutils literal notranslate"><span 
class="pre">auth_okta</span></code>: Use a native Okta URL to perform SSO 
authentication using Okta</p></li>
 <li><p><code class="docutils literal notranslate"><span 
class="pre">auth_jwt</span></code>: Use a provided JWT to perform 
authentication.</p></li>
 <li><p><code class="docutils literal notranslate"><span 
class="pre">auth_mfa</span></code>: Use a username and password with 
MFA.</p></li>
+<li><p><code class="docutils literal notranslate"><span 
class="pre">auth_pat</span></code>: Use a programmatic access token for 
authentication.</p></li>
+<li><p><code class="docutils literal notranslate"><span 
class="pre">auth_wif</span></code>: Use Workload Identity Federation for 
authentication.</p></li>
 </ul>
 </dd>
 <dt><code class="docutils literal notranslate"><span 
class="pre">adbc.snowflake.sql.client_option.auth_token</span></code></dt><dd><p>If
 using OAuth or another form of authentication, this option is how you can
@@ -814,6 +816,9 @@ to <code class="docutils literal notranslate"><span 
class="pre">true</span></cod
 <dt><code class="docutils literal notranslate"><span 
class="pre">adbc.snowflake.sql.client_option.store_temp_creds</span></code></dt><dd><p>When
 <code class="docutils literal notranslate"><span 
class="pre">true</span></code>, the ID token is cached in the credential 
manager. Defaults
 to <code class="docutils literal notranslate"><span 
class="pre">true</span></code> on Windows/OSX, <code class="docutils literal 
notranslate"><span class="pre">false</span></code> on Linux.</p>
 </dd>
+<dt><code class="docutils literal notranslate"><span 
class="pre">adbc.snowflake.sql.client_option.identity_provider</span></code></dt><dd><p>When
 using <code class="docutils literal notranslate"><span 
class="pre">auth_wif</span></code> for workload identity federation 
authentication, this
+must be set to the appropriate identity provider.</p>
+</dd>
 <dt><code class="docutils literal notranslate"><span 
class="pre">adbc.snowflake.sql.client_option.use_high_precision</span></code></dt><dd><p>When
 <code class="docutils literal notranslate"><span 
class="pre">true</span></code>, fixed-point snowflake columns with the type 
<code class="docutils literal notranslate"><span 
class="pre">NUMBER</span></code>
 will be returned as <code class="docutils literal notranslate"><span 
class="pre">Decimal128</span></code> type Arrow columns using the precision
 and scale of the <code class="docutils literal notranslate"><span 
class="pre">NUMBER</span></code> type. When <code class="docutils literal 
notranslate"><span class="pre">false</span></code>, <code class="docutils 
literal notranslate"><span class="pre">NUMBER</span></code> columns
diff --git a/main/genindex.html b/main/genindex.html
index 5da39b541..85bc3237f 100644
--- a/main/genindex.html
+++ b/main/genindex.html
@@ -683,6 +683,8 @@
         <li><a 
href="python/api/adbc_driver_manager.html#adbc_driver_manager.GetObjectsDepth.CATALOGS">CATALOGS
 (adbc_driver_manager.GetObjectsDepth attribute)</a>
 </li>
         <li><a href="glossary.html#term-client-API"><strong>client 
API</strong></a>
+</li>
+        <li><a 
href="python/api/adbc_driver_snowflake.html#adbc_driver_snowflake.DatabaseOptions.CLIENT_IDENTITY_PROVIDER">CLIENT_IDENTITY_PROVIDER
 (adbc_driver_snowflake.DatabaseOptions attribute)</a>
 </li>
         <li><a 
href="python/api/adbc_driver_snowflake.html#adbc_driver_snowflake.DatabaseOptions.CLIENT_REQUEST_MFA_TOKEN">CLIENT_REQUEST_MFA_TOKEN
 (adbc_driver_snowflake.DatabaseOptions attribute)</a>
 </li>
diff --git a/main/objects.inv b/main/objects.inv
index a4bade58b..a56cdb324 100644
Binary files a/main/objects.inv and b/main/objects.inv differ
diff --git a/main/python/api/adbc_driver_snowflake.html 
b/main/python/api/adbc_driver_snowflake.html
index 6c4e82676..2d749b5b2 100644
--- a/main/python/api/adbc_driver_snowflake.html
+++ b/main/python/api/adbc_driver_snowflake.html
@@ -432,10 +432,16 @@
 <span class="sig-name descname"><span class="pre">AUTH_TYPE</span></span><em 
class="property"><span class="w"> </span><span class="p"><span 
class="pre">=</span></span><span class="w"> </span><span 
class="pre">'adbc.snowflake.sql.auth_type'</span></em><a class="headerlink" 
href="#adbc_driver_snowflake.DatabaseOptions.AUTH_TYPE" title="Link to this 
definition">¶</a></dt>
 <dd><p>Specify auth type to use for snowflake connection based on
 what is supported by the snowflake driver. Default is
-“auth_snowflake” (use ValueAuth* consts to specify desired
+“auth_snowflake” (use AuthType.* consts to specify desired
 authentication type).</p>
 </dd></dl>
 
+<dl class="py attribute">
+<dt class="sig sig-object py" 
id="adbc_driver_snowflake.DatabaseOptions.CLIENT_IDENTITY_PROVIDER">
+<span class="sig-name descname"><span 
class="pre">CLIENT_IDENTITY_PROVIDER</span></span><em class="property"><span 
class="w"> </span><span class="p"><span class="pre">=</span></span><span 
class="w"> </span><span 
class="pre">'adbc.snowflake.sql.client_option.identity_provider'</span></em><a 
class="headerlink" 
href="#adbc_driver_snowflake.DatabaseOptions.CLIENT_IDENTITY_PROVIDER" 
title="Link to this definition">¶</a></dt>
+<dd><p>Specify the workload identity provider to use for WIF 
authentication.</p>
+</dd></dl>
+
 <dl class="py attribute">
 <dt class="sig sig-object py" 
id="adbc_driver_snowflake.DatabaseOptions.CLIENT_REQUEST_MFA_TOKEN">
 <span class="sig-name descname"><span 
class="pre">CLIENT_REQUEST_MFA_TOKEN</span></span><em class="property"><span 
class="w"> </span><span class="p"><span class="pre">=</span></span><span 
class="w"> </span><span 
class="pre">'adbc.snowflake.sql.client_option.cache_mfa_token'</span></em><a 
class="headerlink" 
href="#adbc_driver_snowflake.DatabaseOptions.CLIENT_REQUEST_MFA_TOKEN" 
title="Link to this definition">¶</a></dt>
@@ -752,6 +758,7 @@ United States and other countries.
 <li><a class="reference internal" 
href="#adbc_driver_snowflake.DatabaseOptions.AUTH_OKTA_URL"><code 
class="docutils literal notranslate"><span 
class="pre">DatabaseOptions.AUTH_OKTA_URL</span></code></a></li>
 <li><a class="reference internal" 
href="#adbc_driver_snowflake.DatabaseOptions.AUTH_TOKEN"><code class="docutils 
literal notranslate"><span 
class="pre">DatabaseOptions.AUTH_TOKEN</span></code></a></li>
 <li><a class="reference internal" 
href="#adbc_driver_snowflake.DatabaseOptions.AUTH_TYPE"><code class="docutils 
literal notranslate"><span 
class="pre">DatabaseOptions.AUTH_TYPE</span></code></a></li>
+<li><a class="reference internal" 
href="#adbc_driver_snowflake.DatabaseOptions.CLIENT_IDENTITY_PROVIDER"><code 
class="docutils literal notranslate"><span 
class="pre">DatabaseOptions.CLIENT_IDENTITY_PROVIDER</span></code></a></li>
 <li><a class="reference internal" 
href="#adbc_driver_snowflake.DatabaseOptions.CLIENT_REQUEST_MFA_TOKEN"><code 
class="docutils literal notranslate"><span 
class="pre">DatabaseOptions.CLIENT_REQUEST_MFA_TOKEN</span></code></a></li>
 <li><a class="reference internal" 
href="#adbc_driver_snowflake.DatabaseOptions.CLIENT_STORE_TEMP_CRED"><code 
class="docutils literal notranslate"><span 
class="pre">DatabaseOptions.CLIENT_STORE_TEMP_CRED</span></code></a></li>
 <li><a class="reference internal" 
href="#adbc_driver_snowflake.DatabaseOptions.CLIENT_TIMEOUT"><code 
class="docutils literal notranslate"><span 
class="pre">DatabaseOptions.CLIENT_TIMEOUT</span></code></a></li>
diff --git a/main/r/adbcbigquery/pkgdown.yml b/main/r/adbcbigquery/pkgdown.yml
index d50d1a138..db42090c5 100644
--- a/main/r/adbcbigquery/pkgdown.yml
+++ b/main/r/adbcbigquery/pkgdown.yml
@@ -2,7 +2,7 @@ pandoc: 3.7.0.2
 pkgdown: 2.1.3
 pkgdown_sha: ~
 articles: {}
-last_built: 2025-08-29T02:50Z
+last_built: 2025-08-29T19:03Z
 urls:
   reference: https://arrow.apache.org/adbc/current/r/adbcbigquery/reference
   article: https://arrow.apache.org/adbc/current/r/adbcbigquery/articles
diff --git a/main/r/adbcdrivermanager/pkgdown.yml 
b/main/r/adbcdrivermanager/pkgdown.yml
index 789564e52..3499932a4 100644
--- a/main/r/adbcdrivermanager/pkgdown.yml
+++ b/main/r/adbcdrivermanager/pkgdown.yml
@@ -2,7 +2,7 @@ pandoc: 3.7.0.2
 pkgdown: 2.1.3
 pkgdown_sha: ~
 articles: {}
-last_built: 2025-08-29T02:50Z
+last_built: 2025-08-29T19:03Z
 urls:
   reference: 
https://arrow.apache.org/adbc/current/r/adbcdrivermanager/reference
   article: https://arrow.apache.org/adbc/current/r/adbcdrivermanager/articles
diff --git a/main/r/adbcdrivermanager/reference/adbc_connection_init.html 
b/main/r/adbcdrivermanager/reference/adbc_connection_init.html
index 14e1a2a59..30de2a3d2 100644
--- a/main/r/adbcdrivermanager/reference/adbc_connection_init.html
+++ b/main/r/adbcdrivermanager/reference/adbc_connection_init.html
@@ -105,9 +105,9 @@ finer-grained control over behaviour at the R 
level.</p></dd>
     <h2 id="ref-examples">Examples<a class="anchor" aria-label="anchor" 
href="#ref-examples"></a></h2>
     <div class="sourceCode"><pre class="sourceCode r"><code><span 
class="r-in"><span><span class="va">db</span> <span class="op">&lt;-</span> 
<span class="fu"><a 
href="adbc_database_init.html">adbc_database_init</a></span><span 
class="op">(</span><span class="fu"><a 
href="adbc_driver_void.html">adbc_driver_void</a></span><span 
class="op">(</span><span class="op">)</span><span 
class="op">)</span></span></span>
 <span class="r-in"><span><span class="fu">adbc_connection_init</span><span 
class="op">(</span><span class="va">db</span><span 
class="op">)</span></span></span>
-<span class="r-out co"><span class="r-pr">#&gt;</span> &lt;adbc_connection at 
0x556e4597cf40&gt; </span>
+<span class="r-out co"><span class="r-pr">#&gt;</span> &lt;adbc_connection at 
0x555660389d70&gt; </span>
 <span class="r-out co"><span class="r-pr">#&gt;</span> List of 1</span>
-<span class="r-out co"><span class="r-pr">#&gt;</span>  $ 
database:&lt;adbc_database at 0x556e4597ceb0&gt; </span>
+<span class="r-out co"><span class="r-pr">#&gt;</span>  $ 
database:&lt;adbc_database at 0x55566066c5e0&gt; </span>
 <span class="r-out co"><span class="r-pr">#&gt;</span> List of 1</span>
 <span class="r-out co"><span class="r-pr">#&gt;</span>   ..$ 
driver:&lt;adbc_driver_void&gt; List of 4</span>
 <span class="r-out co"><span class="r-pr">#&gt;</span>   .. ..$ load_flags     
 : int 15</span>
diff --git a/main/r/adbcdrivermanager/reference/adbc_database_init.html 
b/main/r/adbcdrivermanager/reference/adbc_database_init.html
index 849cbc8aa..79ba5ac3c 100644
--- a/main/r/adbcdrivermanager/reference/adbc_database_init.html
+++ b/main/r/adbcdrivermanager/reference/adbc_database_init.html
@@ -104,7 +104,7 @@ finer-grained control over behaviour at the R 
level.</p></dd>
     <div class="section level2">
     <h2 id="ref-examples">Examples<a class="anchor" aria-label="anchor" 
href="#ref-examples"></a></h2>
     <div class="sourceCode"><pre class="sourceCode r"><code><span 
class="r-in"><span><span class="fu">adbc_database_init</span><span 
class="op">(</span><span class="fu"><a 
href="adbc_driver_void.html">adbc_driver_void</a></span><span 
class="op">(</span><span class="op">)</span><span 
class="op">)</span></span></span>
-<span class="r-out co"><span class="r-pr">#&gt;</span> &lt;adbc_database at 
0x556e4597c5f0&gt; </span>
+<span class="r-out co"><span class="r-pr">#&gt;</span> &lt;adbc_database at 
0x555660e23e90&gt; </span>
 <span class="r-out co"><span class="r-pr">#&gt;</span> List of 1</span>
 <span class="r-out co"><span class="r-pr">#&gt;</span>  $ 
driver:&lt;adbc_driver_void&gt; List of 4</span>
 <span class="r-out co"><span class="r-pr">#&gt;</span>   ..$ load_flags      : 
int 15</span>
diff --git a/main/r/adbcdrivermanager/reference/adbc_statement_init.html 
b/main/r/adbcdrivermanager/reference/adbc_statement_init.html
index 8926817df..43b7c3ea9 100644
--- a/main/r/adbcdrivermanager/reference/adbc_statement_init.html
+++ b/main/r/adbcdrivermanager/reference/adbc_statement_init.html
@@ -106,11 +106,11 @@ finer-grained control over behaviour at the R 
level.</p></dd>
     <div class="sourceCode"><pre class="sourceCode r"><code><span 
class="r-in"><span><span class="va">db</span> <span class="op">&lt;-</span> 
<span class="fu"><a 
href="adbc_database_init.html">adbc_database_init</a></span><span 
class="op">(</span><span class="fu"><a 
href="adbc_driver_void.html">adbc_driver_void</a></span><span 
class="op">(</span><span class="op">)</span><span 
class="op">)</span></span></span>
 <span class="r-in"><span><span class="va">con</span> <span 
class="op">&lt;-</span> <span class="fu"><a 
href="adbc_connection_init.html">adbc_connection_init</a></span><span 
class="op">(</span><span class="va">db</span><span 
class="op">)</span></span></span>
 <span class="r-in"><span><span class="fu">adbc_statement_init</span><span 
class="op">(</span><span class="va">con</span><span 
class="op">)</span></span></span>
-<span class="r-out co"><span class="r-pr">#&gt;</span> &lt;adbc_statement at 
0x556e42322ae0&gt; </span>
+<span class="r-out co"><span class="r-pr">#&gt;</span> &lt;adbc_statement at 
0x555660302530&gt; </span>
 <span class="r-out co"><span class="r-pr">#&gt;</span> List of 1</span>
-<span class="r-out co"><span class="r-pr">#&gt;</span>  $ 
connection:&lt;adbc_connection at 0x556e45772970&gt; </span>
+<span class="r-out co"><span class="r-pr">#&gt;</span>  $ 
connection:&lt;adbc_connection at 0x555660e2bb30&gt; </span>
 <span class="r-out co"><span class="r-pr">#&gt;</span> List of 1</span>
-<span class="r-out co"><span class="r-pr">#&gt;</span>   ..$ 
database:&lt;adbc_database at 0x556e457ed800&gt; </span>
+<span class="r-out co"><span class="r-pr">#&gt;</span>   ..$ 
database:&lt;adbc_database at 0x55565b25cca0&gt; </span>
 <span class="r-out co"><span class="r-pr">#&gt;</span> List of 1</span>
 <span class="r-out co"><span class="r-pr">#&gt;</span>   .. ..$ 
driver:&lt;adbc_driver_void&gt; List of 4</span>
 <span class="r-out co"><span class="r-pr">#&gt;</span>   .. .. ..$ load_flags  
    : int 15</span>
diff --git a/main/r/adbcdrivermanager/search.json 
b/main/r/adbcdrivermanager/search.json
index 7e442d88c..afd4d1540 100644
--- a/main/r/adbcdrivermanager/search.json
+++ b/main/r/adbcdrivermanager/search.json
@@ -1 +1 @@
-[{"path":"https://arrow.apache.org/adbc/current/r/adbcdrivermanager/LICENSE.html","id":null,"dir":"","previous_headings":"","what":"Apache
 License","title":"Apache License","text":"Version 2.0, January 2004 
<http://www.apache.org/licenses/>","code":""},{"path":[]},{"path":"https://arrow.apache.org/adbc/current/r/adbcdrivermanager/LICENSE.html","id":"id_1-definitions","dir":"","previous_headings":"Terms
 and Conditions for use, reproduction, and distribution","what":"1. 
Definitions","title [...]
+[{"path":"https://arrow.apache.org/adbc/current/r/adbcdrivermanager/LICENSE.html","id":null,"dir":"","previous_headings":"","what":"Apache
 License","title":"Apache License","text":"Version 2.0, January 2004 
<http://www.apache.org/licenses/>","code":""},{"path":[]},{"path":"https://arrow.apache.org/adbc/current/r/adbcdrivermanager/LICENSE.html","id":"id_1-definitions","dir":"","previous_headings":"Terms
 and Conditions for use, reproduction, and distribution","what":"1. 
Definitions","title [...]
diff --git a/main/r/adbcflightsql/pkgdown.yml b/main/r/adbcflightsql/pkgdown.yml
index d2ed57253..ce9ba6f01 100644
--- a/main/r/adbcflightsql/pkgdown.yml
+++ b/main/r/adbcflightsql/pkgdown.yml
@@ -2,7 +2,7 @@ pandoc: 3.7.0.2
 pkgdown: 2.1.3
 pkgdown_sha: ~
 articles: {}
-last_built: 2025-08-29T02:50Z
+last_built: 2025-08-29T19:03Z
 urls:
   reference: https://arrow.apache.org/adbc/current/r/adbcflightsql/reference
   article: https://arrow.apache.org/adbc/current/r/adbcflightsql/articles
diff --git a/main/r/adbcpostgresql/pkgdown.yml 
b/main/r/adbcpostgresql/pkgdown.yml
index 6742b883d..7860a75c8 100644
--- a/main/r/adbcpostgresql/pkgdown.yml
+++ b/main/r/adbcpostgresql/pkgdown.yml
@@ -2,7 +2,7 @@ pandoc: 3.7.0.2
 pkgdown: 2.1.3
 pkgdown_sha: ~
 articles: {}
-last_built: 2025-08-29T02:51Z
+last_built: 2025-08-29T19:03Z
 urls:
   reference: https://arrow.apache.org/adbc/current/r/adbcpostgresql/reference
   article: https://arrow.apache.org/adbc/current/r/adbcpostgresql/articles
diff --git a/main/r/adbcsnowflake/pkgdown.yml b/main/r/adbcsnowflake/pkgdown.yml
index b8fc42022..38c4f7b3f 100644
--- a/main/r/adbcsnowflake/pkgdown.yml
+++ b/main/r/adbcsnowflake/pkgdown.yml
@@ -2,7 +2,7 @@ pandoc: 3.7.0.2
 pkgdown: 2.1.3
 pkgdown_sha: ~
 articles: {}
-last_built: 2025-08-29T02:50Z
+last_built: 2025-08-29T19:03Z
 urls:
   reference: https://arrow.apache.org/adbc/current/r/adbcsnowflake/reference
   article: https://arrow.apache.org/adbc/current/r/adbcsnowflake/articles
diff --git a/main/r/adbcsqlite/pkgdown.yml b/main/r/adbcsqlite/pkgdown.yml
index 1620db9bb..138382997 100644
--- a/main/r/adbcsqlite/pkgdown.yml
+++ b/main/r/adbcsqlite/pkgdown.yml
@@ -2,7 +2,7 @@ pandoc: 3.7.0.2
 pkgdown: 2.1.3
 pkgdown_sha: ~
 articles: {}
-last_built: 2025-08-29T02:50Z
+last_built: 2025-08-29T19:03Z
 urls:
   reference: https://arrow.apache.org/adbc/current/r/adbcsqlite/reference
   article: https://arrow.apache.org/adbc/current/r/adbcsqlite/articles
diff --git a/main/searchindex.js b/main/searchindex.js
index 6614e924d..faf089ee5 100644
--- a/main/searchindex.js
+++ b/main/searchindex.js
@@ -1 +1 @@
-Search.setIndex({"alltitles":{"ADBC API Standard":[[26,null]],"ADBC Driver 
Manager and Manifests":[[23,null]],"API 
Reference":[[3,"api-reference"],[31,"api-reference"],[41,"api-reference"],[50,"api-reference"]],"And
 then what is the \u201cADBC JDBC 
driver\u201d?":[[21,"and-then-what-is-the-adbc-jdbc-driver"]],"Apache Arrow 
ADBC":[[29,null]],"Arrow type to PostgreSQL type 
mapping":[[17,"id5"]],"Authenticate with a username and 
password":[[47,"authenticate-with-a-username-and-password"]]," [...]
\ No newline at end of file
+Search.setIndex({"alltitles":{"ADBC API Standard":[[26,null]],"ADBC Driver 
Manager and Manifests":[[23,null]],"API 
Reference":[[3,"api-reference"],[31,"api-reference"],[41,"api-reference"],[50,"api-reference"]],"And
 then what is the \u201cADBC JDBC 
driver\u201d?":[[21,"and-then-what-is-the-adbc-jdbc-driver"]],"Apache Arrow 
ADBC":[[29,null]],"Arrow type to PostgreSQL type 
mapping":[[17,"id5"]],"Authenticate with a username and 
password":[[47,"authenticate-with-a-username-and-password"]]," [...]
\ No newline at end of file

Reply via email to