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 908cd3664 publish documentation
908cd3664 is described below

commit 908cd36649f68f2ff31fe2922afec6a30ae37636
Author: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
AuthorDate: Thu Feb 26 12:33:40 2026 +0000

    publish documentation
---
 main/_sources/format/connection_profiles.rst.txt     |  7 +++++--
 main/_sources/format/driver_manifests.rst.txt        |  2 +-
 main/format/connection_profiles.html                 | 20 +++++++++++++-------
 main/format/driver_manifests.html                    |  2 +-
 main/r/adbcbigquery/pkgdown.yml                      |  2 +-
 main/r/adbcdrivermanager/pkgdown.yml                 |  2 +-
 .../reference/adbc_connection_init.html              |  4 ++--
 .../reference/adbc_connection_init.md                |  4 ++--
 .../reference/adbc_database_init.html                |  2 +-
 .../reference/adbc_database_init.md                  |  2 +-
 .../reference/adbc_statement_init.html               |  6 +++---
 .../reference/adbc_statement_init.md                 |  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 +-
 18 files changed, 40 insertions(+), 31 deletions(-)

diff --git a/main/_sources/format/connection_profiles.rst.txt 
b/main/_sources/format/connection_profiles.rst.txt
index cf3ae87f2..228ff448b 100644
--- a/main/_sources/format/connection_profiles.rst.txt
+++ b/main/_sources/format/connection_profiles.rst.txt
@@ -193,9 +193,12 @@ When using a profile name (not an absolute path), the 
driver manager searches fo
 1. **Additional Search Paths** (if configured via 
``AdbcDriverManagerDatabaseSetAdditionalSearchPathList()``)
 2. **ADBC_PROFILE_PATH** environment variable (colon-separated on Unix, 
semicolon-separated on Windows)
 3. **Conda Environment** (if built with Conda support and ``CONDA_PREFIX`` is 
set):
+
    - ``$CONDA_PREFIX/etc/adbc/profiles/``
+
 4. **User Configuration Directory**:
-   - Linux: ``~/.config/adbc/profiles/``
+
+   - Linux: ``$XDG_CONFIG_HOME/adbc/profiles`` if set, else 
``~/.config/adbc/profiles/``
    - macOS: ``~/Library/Application Support/ADBC/Profiles/``
    - Windows: ``%LOCALAPPDATA%\ADBC\Profiles\``
 
@@ -433,7 +436,7 @@ Store credentials separately from code:
 
    [options]
    adbc.snowflake.sql.account = "mycompany"
-   adbc.snowflake.sql.auth_token = "env_var(SNOWFLAKE_TOKEN)"
+   adbc.snowflake.sql.auth_token = "{{ env_var(SNOWFLAKE_TOKEN) }}"
 
 Then set ``SNOWFLAKE_TOKEN`` via environment variable, secrets manager, or 
configuration service.
 
diff --git a/main/_sources/format/driver_manifests.rst.txt 
b/main/_sources/format/driver_manifests.rst.txt
index 1a48060a8..1d4896298 100644
--- a/main/_sources/format/driver_manifests.rst.txt
+++ b/main/_sources/format/driver_manifests.rst.txt
@@ -499,7 +499,7 @@ would happen for ODBC drivers. The search for a manifest on 
Windows would be the
      * ``entrypoint`` - the entrypoint to use for the driver if a non-default 
entrypoint is needed
      * ``driver`` - the path to the driver shared library
 
-   * If no registry key is found, then the directory 
``%LOCAL_APPDATA%\ADBC\Drivers`` is searched
+   * If no registry key is found, then the directory 
``%LOCALAPPDATA%\ADBC\Drivers`` is searched
 
 #. If the ``LOAD_FLAG_SEARCH_SYSTEM`` load option is set, the driver manager 
will search for a system-level configuration
 
diff --git a/main/format/connection_profiles.html 
b/main/format/connection_profiles.html
index 0f68ad4da..ef800c41b 100644
--- a/main/format/connection_profiles.html
+++ b/main/format/connection_profiles.html
@@ -545,12 +545,18 @@ but this may be extended in the future to support other 
types of dynamic content
 <ol class="arabic simple">
 <li><p><strong>Additional Search Paths</strong> (if configured via <code 
class="docutils literal notranslate"><span 
class="pre">AdbcDriverManagerDatabaseSetAdditionalSearchPathList()</span></code>)</p></li>
 <li><p><strong>ADBC_PROFILE_PATH</strong> environment variable 
(colon-separated on Unix, semicolon-separated on Windows)</p></li>
-<li><p><strong>Conda Environment</strong> (if built with Conda support and 
<code class="docutils literal notranslate"><span 
class="pre">CONDA_PREFIX</span></code> is set):
-- <code class="docutils literal notranslate"><span 
class="pre">$CONDA_PREFIX/etc/adbc/profiles/</span></code></p></li>
-<li><p><strong>User Configuration Directory</strong>:
-- Linux: <code class="docutils literal notranslate"><span 
class="pre">~/.config/adbc/profiles/</span></code>
-- macOS: <code class="docutils literal notranslate"><span 
class="pre">~/Library/Application</span> <span 
class="pre">Support/ADBC/Profiles/</span></code>
-- Windows: <code class="docutils literal notranslate"><span 
class="pre">%LOCALAPPDATA%\ADBC\Profiles\</span></code></p></li>
+<li><p><strong>Conda Environment</strong> (if built with Conda support and 
<code class="docutils literal notranslate"><span 
class="pre">CONDA_PREFIX</span></code> is set):</p>
+<ul class="simple">
+<li><p><code class="docutils literal notranslate"><span 
class="pre">$CONDA_PREFIX/etc/adbc/profiles/</span></code></p></li>
+</ul>
+</li>
+<li><p><strong>User Configuration Directory</strong>:</p>
+<ul class="simple">
+<li><p>Linux: <code class="docutils literal notranslate"><span 
class="pre">$XDG_CONFIG_HOME/adbc/profiles</span></code> if set, else <code 
class="docutils literal notranslate"><span 
class="pre">~/.config/adbc/profiles/</span></code></p></li>
+<li><p>macOS: <code class="docutils literal notranslate"><span 
class="pre">~/Library/Application</span> <span 
class="pre">Support/ADBC/Profiles/</span></code></p></li>
+<li><p>Windows: <code class="docutils literal notranslate"><span 
class="pre">%LOCALAPPDATA%\ADBC\Profiles\</span></code></p></li>
+</ul>
+</li>
 </ol>
 <p>The driver manager searches locations in order and uses the first matching 
profile file found.</p>
 <section id="using-absolute-paths">
@@ -756,7 +762,7 @@ but this may be extended in the future to support other 
types of dynamic content
 <p>Store credentials separately from code:</p>
 <div class="highlight-toml notranslate"><div 
class="highlight"><pre><span></span><span class="k">[options]</span>
 <span class="n">adbc</span><span class="p">.</span><span 
class="n">snowflake</span><span class="p">.</span><span 
class="n">sql</span><span class="p">.</span><span class="n">account</span><span 
class="w"> </span><span class="o">=</span><span class="w"> </span><span 
class="s2">&quot;mycompany&quot;</span>
-<span class="n">adbc</span><span class="p">.</span><span 
class="n">snowflake</span><span class="p">.</span><span 
class="n">sql</span><span class="p">.</span><span 
class="n">auth_token</span><span class="w"> </span><span 
class="o">=</span><span class="w"> </span><span 
class="s2">&quot;env_var(SNOWFLAKE_TOKEN)&quot;</span>
+<span class="n">adbc</span><span class="p">.</span><span 
class="n">snowflake</span><span class="p">.</span><span 
class="n">sql</span><span class="p">.</span><span 
class="n">auth_token</span><span class="w"> </span><span 
class="o">=</span><span class="w"> </span><span class="s2">&quot;{{ 
env_var(SNOWFLAKE_TOKEN) }}&quot;</span>
 </pre></div>
 </div>
 <p>Then set <code class="docutils literal notranslate"><span 
class="pre">SNOWFLAKE_TOKEN</span></code> via environment variable, secrets 
manager, or configuration service.</p>
diff --git a/main/format/driver_manifests.html 
b/main/format/driver_manifests.html
index e09bf6c50..71f45bb6b 100644
--- a/main/format/driver_manifests.html
+++ b/main/format/driver_manifests.html
@@ -899,7 +899,7 @@ are used:</p>
 <li><p><code class="docutils literal notranslate"><span 
class="pre">driver</span></code> - the path to the driver shared 
library</p></li>
 </ul>
 </li>
-<li><p>If no registry key is found, then the directory <code class="docutils 
literal notranslate"><span 
class="pre">%LOCAL_APPDATA%\ADBC\Drivers</span></code> is searched</p></li>
+<li><p>If no registry key is found, then the directory <code class="docutils 
literal notranslate"><span 
class="pre">%LOCALAPPDATA%\ADBC\Drivers</span></code> is searched</p></li>
 </ul>
 </li>
 <li><p>If the <code class="docutils literal notranslate"><span 
class="pre">LOAD_FLAG_SEARCH_SYSTEM</span></code> load option is set, the 
driver manager will search for a system-level configuration</p>
diff --git a/main/r/adbcbigquery/pkgdown.yml b/main/r/adbcbigquery/pkgdown.yml
index 980c97840..840a86df5 100644
--- a/main/r/adbcbigquery/pkgdown.yml
+++ b/main/r/adbcbigquery/pkgdown.yml
@@ -2,7 +2,7 @@ pandoc: '3.9'
 pkgdown: 2.2.0
 pkgdown_sha: ~
 articles: {}
-last_built: 2026-02-26T03:12Z
+last_built: 2026-02-26T12:32Z
 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 0aebabafe..b96f56101 100644
--- a/main/r/adbcdrivermanager/pkgdown.yml
+++ b/main/r/adbcdrivermanager/pkgdown.yml
@@ -2,7 +2,7 @@ pandoc: '3.9'
 pkgdown: 2.2.0
 pkgdown_sha: ~
 articles: {}
-last_built: 2026-02-26T03:12Z
+last_built: 2026-02-26T12:32Z
 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 165b47844..a58996275 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 
0x55d1e5ca8bf0&gt; </span>
+<span class="r-out co"><span class="r-pr">#&gt;</span> &lt;adbc_connection at 
0x55b5611ed9f0&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 0x55d1dfb3e370&gt; </span>
+<span class="r-out co"><span class="r-pr">#&gt;</span>  $ 
database:&lt;adbc_database at 0x55b5604553b0&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_connection_init.md 
b/main/r/adbcdrivermanager/reference/adbc_connection_init.md
index dd796ec51..7f869a581 100644
--- a/main/r/adbcdrivermanager/reference/adbc_connection_init.md
+++ b/main/r/adbcdrivermanager/reference/adbc_connection_init.md
@@ -62,9 +62,9 @@ An object of class 'adbc_connection'
 ``` r
 db <- adbc_database_init(adbc_driver_void())
 adbc_connection_init(db)
-#> <adbc_connection at 0x55d1e5ca8bf0> 
+#> <adbc_connection at 0x55b5611ed9f0> 
 #> List of 1
-#>  $ database:<adbc_database at 0x55d1dfb3e370> 
+#>  $ database:<adbc_database at 0x55b5604553b0> 
 #> List of 1
 #>   ..$ driver:<adbc_driver_void> List of 4
 #>   .. ..$ load_flags      : int 15
diff --git a/main/r/adbcdrivermanager/reference/adbc_database_init.html 
b/main/r/adbcdrivermanager/reference/adbc_database_init.html
index 313df7954..631520e71 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 
0x55d1dfbc2400&gt; </span>
+<span class="r-out co"><span class="r-pr">#&gt;</span> &lt;adbc_database at 
0x55b560a93f60&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.md 
b/main/r/adbcdrivermanager/reference/adbc_database_init.md
index fa89d51fe..9a4497b14 100644
--- a/main/r/adbcdrivermanager/reference/adbc_database_init.md
+++ b/main/r/adbcdrivermanager/reference/adbc_database_init.md
@@ -61,7 +61,7 @@ An object of class adbc_database
 
 ``` r
 adbc_database_init(adbc_driver_void())
-#> <adbc_database at 0x55d1dfbc2400> 
+#> <adbc_database at 0x55b560a93f60> 
 #> List of 1
 #>  $ driver:<adbc_driver_void> List of 4
 #>   ..$ load_flags      : int 15
diff --git a/main/r/adbcdrivermanager/reference/adbc_statement_init.html 
b/main/r/adbcdrivermanager/reference/adbc_statement_init.html
index 0969e8cc2..ce960f73a 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 
0x55d1e5d56890&gt; </span>
+<span class="r-out co"><span class="r-pr">#&gt;</span> &lt;adbc_statement at 
0x55b560a71b60&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 0x55d1e5db3290&gt; </span>
+<span class="r-out co"><span class="r-pr">#&gt;</span>  $ 
connection:&lt;adbc_connection at 0x55b560ca9780&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 0x55d1e31495c0&gt; </span>
+<span class="r-out co"><span class="r-pr">#&gt;</span>   ..$ 
database:&lt;adbc_database at 0x55b560435190&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.md 
b/main/r/adbcdrivermanager/reference/adbc_statement_init.md
index 2669e602a..2b2c9ba9d 100644
--- a/main/r/adbcdrivermanager/reference/adbc_statement_init.md
+++ b/main/r/adbcdrivermanager/reference/adbc_statement_init.md
@@ -63,11 +63,11 @@ An object of class 'adbc_statement'
 db <- adbc_database_init(adbc_driver_void())
 con <- adbc_connection_init(db)
 adbc_statement_init(con)
-#> <adbc_statement at 0x55d1e5d56890> 
+#> <adbc_statement at 0x55b560a71b60> 
 #> List of 1
-#>  $ connection:<adbc_connection at 0x55d1e5db3290> 
+#>  $ connection:<adbc_connection at 0x55b560ca9780> 
 #> List of 1
-#>   ..$ database:<adbc_database at 0x55d1e31495c0> 
+#>   ..$ database:<adbc_database at 0x55b560435190> 
 #> List of 1
 #>   .. ..$ driver:<adbc_driver_void> List of 4
 #>   .. .. ..$ load_flags      : int 15
diff --git a/main/r/adbcdrivermanager/search.json 
b/main/r/adbcdrivermanager/search.json
index 9db97909a..2a0663cd1 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 df27bbfb7..ebb019dfb 100644
--- a/main/r/adbcflightsql/pkgdown.yml
+++ b/main/r/adbcflightsql/pkgdown.yml
@@ -2,7 +2,7 @@ pandoc: '3.9'
 pkgdown: 2.2.0
 pkgdown_sha: ~
 articles: {}
-last_built: 2026-02-26T03:13Z
+last_built: 2026-02-26T12:32Z
 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 ab1048b85..31d977ca9 100644
--- a/main/r/adbcpostgresql/pkgdown.yml
+++ b/main/r/adbcpostgresql/pkgdown.yml
@@ -2,7 +2,7 @@ pandoc: '3.9'
 pkgdown: 2.2.0
 pkgdown_sha: ~
 articles: {}
-last_built: 2026-02-26T03:12Z
+last_built: 2026-02-26T12:32Z
 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 763337d94..5c1796994 100644
--- a/main/r/adbcsnowflake/pkgdown.yml
+++ b/main/r/adbcsnowflake/pkgdown.yml
@@ -2,7 +2,7 @@ pandoc: '3.9'
 pkgdown: 2.2.0
 pkgdown_sha: ~
 articles: {}
-last_built: 2026-02-26T03:13Z
+last_built: 2026-02-26T12:32Z
 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 23e2b82a2..917292a11 100644
--- a/main/r/adbcsqlite/pkgdown.yml
+++ b/main/r/adbcsqlite/pkgdown.yml
@@ -2,7 +2,7 @@ pandoc: '3.9'
 pkgdown: 2.2.0
 pkgdown_sha: ~
 articles: {}
-last_built: 2026-02-26T03:13Z
+last_built: 2026-02-26T12:33Z
 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 8666cbbcc..a96210236 100644
--- a/main/searchindex.js
+++ b/main/searchindex.js
@@ -1 +1 @@
-Search.setIndex({"alltitles":{"ADBC API Standard":[[28,null]],"ADBC Driver 
Manager and Manifests":[[25,null]],"API 
Reference":[[3,"api-reference"],[24,"api-reference"],[33,"api-reference"],[43,"api-reference"],[52,"api-reference"]],"Advanced
 Usage":[[24,"advanced-usage"]],"And then what is the \u201cADBC JDBC 
driver\u201d?":[[22,"and-then-what-is-the-adbc-jdbc-driver"]],"Apache Arrow 
ADBC":[[31,null]],"Arrow type to PostgreSQL type 
mapping":[[18,"id5"]],"Authenticate with a username and  [...]
\ No newline at end of file
+Search.setIndex({"alltitles":{"ADBC API Standard":[[28,null]],"ADBC Driver 
Manager and Manifests":[[25,null]],"API 
Reference":[[3,"api-reference"],[24,"api-reference"],[33,"api-reference"],[43,"api-reference"],[52,"api-reference"]],"Advanced
 Usage":[[24,"advanced-usage"]],"And then what is the \u201cADBC JDBC 
driver\u201d?":[[22,"and-then-what-is-the-adbc-jdbc-driver"]],"Apache Arrow 
ADBC":[[31,null]],"Arrow type to PostgreSQL type 
mapping":[[18,"id5"]],"Authenticate with a username and  [...]
\ No newline at end of file

Reply via email to