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

commit bae55b2cab7d29bf45bcb7691477bfac00bae794
Author: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
AuthorDate: Wed Aug 20 20:03:23 2025 +0000

    publish documentation
---
 main/_sources/format/driver_manifests.rst.txt      |  77 +++++++++++++
 main/format/driver_manifests.html                  | 119 ++++++++++++++++++++-
 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 +-
 13 files changed, 209 insertions(+), 15 deletions(-)

diff --git a/main/_sources/format/driver_manifests.rst.txt 
b/main/_sources/format/driver_manifests.rst.txt
index 5b9996cfc..9dcdfcbf2 100644
--- a/main/_sources/format/driver_manifests.rst.txt
+++ b/main/_sources/format/driver_manifests.rst.txt
@@ -239,6 +239,83 @@ a string (single path) or a table of platform-specific 
paths.  The ``Driver.shar
 needed to successfully load a driver manifest.  The other keys are optional, 
but provide useful metadata
 about the driver.
 
+Platform Tuples
+^^^^^^^^^^^^^^^
+
+Since the manifests use platform tuples to specify the different systems that
+drivers might be built for, it is important to create a consistent way to name
+these tuples. Specifically, consistent naming for operating system (OS) and
+architecture combinations that can be used by all systems that read and/or 
write
+manifest files.
+
+As such, the following table should be considered the authoritative list:
+
++---------------+---------------+
+| OS            | Tuple Name    |
++===============+===============+
+| Linux         | ``linux``     |
++---------------+---------------+
+| macOS         | ``macos``     |
++---------------+---------------+
+| Windows       | ``windows``   |
++---------------+---------------+
+| FreeBSD       | ``freebsd``   |
++---------------+---------------+
+| OpenBSD       | ``openbsd``   |
++---------------+---------------+
+
++---------------+-----------------+
+| Architecture  | Tuple Name      |
++===============+=================+
+| i386          | ``x86``         |
++---------------+-----------------+
+| x86           | ``x86``         |
++---------------+-----------------+
+| x86-64        | ``amd64``       |
++---------------+-----------------+
+| x64           | ``amd64``       |
++---------------+-----------------+
+| amd64         | ``amd64``       |
++---------------+-----------------+
+| arm (32-bit)  | ``arm``         |
++---------------+-----------------+
+| armbe (32-bit)| ``armbe``       |
++---------------+-----------------+
+| arm64be       | ``arm64be``     |
++---------------+-----------------+
+| aarch64       | ``arm64``       |
++---------------+-----------------+
+| arm64         | ``arm64``       |
++---------------+-----------------+
+| s390x         | ``s390x``       |
++---------------+-----------------+
+| ppc           | ``powerpc``     |
++---------------+-----------------+
+| ppc64         | ``powerpc64``   |
++---------------+-----------------+
+| ppc64le       | ``powerpc64le`` |
++---------------+-----------------+
+| riscv         | ``riscv``       |
++---------------+-----------------+
+| riscv64       | ``riscv64``     |
++---------------+-----------------+
+| sparc         | ``sparc``       |
++---------------+-----------------+
+| sparc64       | ``sparc64``     |
++---------------+-----------------+
+| Wasm (32-bit) | ``wasm32``      |
++---------------+-----------------+
+| Wasm (64-bit) | ``wasm64``      |
++---------------+-----------------+
+
+The construction of the platform tuple is: ``<OS>_<Architecture>``, for 
example:
+``linux_amd64``.
+
+.. note::
+   For alternative scenarios such as using musl instead of the GNU C Library
+   (glibc) or MinGW, the tuple should have the appropriate suffix for that
+   environment. i.e. ``linux_amd64_musl`` or ``windows_amd64_mingw``.
+
 Manifest Location and Discovery
 -------------------------------
 
diff --git a/main/format/driver_manifests.html 
b/main/format/driver_manifests.html
index f39a15119..364050843 100644
--- a/main/format/driver_manifests.html
+++ b/main/format/driver_manifests.html
@@ -600,6 +600,120 @@ by tools that may be written to manage driver 
installations.</p>
 a string (single path) or a table of platform-specific paths.  The <code 
class="docutils literal notranslate"><span 
class="pre">Driver.shared</span></code> key is the only key
 needed to successfully load a driver manifest.  The other keys are optional, 
but provide useful metadata
 about the driver.</p>
+<section id="platform-tuples">
+<h4>Platform Tuples<a class="headerlink" href="#platform-tuples" title="Link 
to this heading">¶</a></h4>
+<p>Since the manifests use platform tuples to specify the different systems 
that
+drivers might be built for, it is important to create a consistent way to name
+these tuples. Specifically, consistent naming for operating system (OS) and
+architecture combinations that can be used by all systems that read and/or 
write
+manifest files.</p>
+<p>As such, the following table should be considered the authoritative 
list:</p>
+<div class="table-wrapper docutils container">
+<table class="docutils align-default">
+<thead>
+<tr class="row-odd"><th class="head"><p>OS</p></th>
+<th class="head"><p>Tuple Name</p></th>
+</tr>
+</thead>
+<tbody>
+<tr class="row-even"><td><p>Linux</p></td>
+<td><p><code class="docutils literal notranslate"><span 
class="pre">linux</span></code></p></td>
+</tr>
+<tr class="row-odd"><td><p>macOS</p></td>
+<td><p><code class="docutils literal notranslate"><span 
class="pre">macos</span></code></p></td>
+</tr>
+<tr class="row-even"><td><p>Windows</p></td>
+<td><p><code class="docutils literal notranslate"><span 
class="pre">windows</span></code></p></td>
+</tr>
+<tr class="row-odd"><td><p>FreeBSD</p></td>
+<td><p><code class="docutils literal notranslate"><span 
class="pre">freebsd</span></code></p></td>
+</tr>
+<tr class="row-even"><td><p>OpenBSD</p></td>
+<td><p><code class="docutils literal notranslate"><span 
class="pre">openbsd</span></code></p></td>
+</tr>
+</tbody>
+</table>
+</div>
+<div class="table-wrapper docutils container">
+<table class="docutils align-default">
+<thead>
+<tr class="row-odd"><th class="head"><p>Architecture</p></th>
+<th class="head"><p>Tuple Name</p></th>
+</tr>
+</thead>
+<tbody>
+<tr class="row-even"><td><p>i386</p></td>
+<td><p><code class="docutils literal notranslate"><span 
class="pre">x86</span></code></p></td>
+</tr>
+<tr class="row-odd"><td><p>x86</p></td>
+<td><p><code class="docutils literal notranslate"><span 
class="pre">x86</span></code></p></td>
+</tr>
+<tr class="row-even"><td><p>x86-64</p></td>
+<td><p><code class="docutils literal notranslate"><span 
class="pre">amd64</span></code></p></td>
+</tr>
+<tr class="row-odd"><td><p>x64</p></td>
+<td><p><code class="docutils literal notranslate"><span 
class="pre">amd64</span></code></p></td>
+</tr>
+<tr class="row-even"><td><p>amd64</p></td>
+<td><p><code class="docutils literal notranslate"><span 
class="pre">amd64</span></code></p></td>
+</tr>
+<tr class="row-odd"><td><p>arm (32-bit)</p></td>
+<td><p><code class="docutils literal notranslate"><span 
class="pre">arm</span></code></p></td>
+</tr>
+<tr class="row-even"><td><p>armbe (32-bit)</p></td>
+<td><p><code class="docutils literal notranslate"><span 
class="pre">armbe</span></code></p></td>
+</tr>
+<tr class="row-odd"><td><p>arm64be</p></td>
+<td><p><code class="docutils literal notranslate"><span 
class="pre">arm64be</span></code></p></td>
+</tr>
+<tr class="row-even"><td><p>aarch64</p></td>
+<td><p><code class="docutils literal notranslate"><span 
class="pre">arm64</span></code></p></td>
+</tr>
+<tr class="row-odd"><td><p>arm64</p></td>
+<td><p><code class="docutils literal notranslate"><span 
class="pre">arm64</span></code></p></td>
+</tr>
+<tr class="row-even"><td><p>s390x</p></td>
+<td><p><code class="docutils literal notranslate"><span 
class="pre">s390x</span></code></p></td>
+</tr>
+<tr class="row-odd"><td><p>ppc</p></td>
+<td><p><code class="docutils literal notranslate"><span 
class="pre">powerpc</span></code></p></td>
+</tr>
+<tr class="row-even"><td><p>ppc64</p></td>
+<td><p><code class="docutils literal notranslate"><span 
class="pre">powerpc64</span></code></p></td>
+</tr>
+<tr class="row-odd"><td><p>ppc64le</p></td>
+<td><p><code class="docutils literal notranslate"><span 
class="pre">powerpc64le</span></code></p></td>
+</tr>
+<tr class="row-even"><td><p>riscv</p></td>
+<td><p><code class="docutils literal notranslate"><span 
class="pre">riscv</span></code></p></td>
+</tr>
+<tr class="row-odd"><td><p>riscv64</p></td>
+<td><p><code class="docutils literal notranslate"><span 
class="pre">riscv64</span></code></p></td>
+</tr>
+<tr class="row-even"><td><p>sparc</p></td>
+<td><p><code class="docutils literal notranslate"><span 
class="pre">sparc</span></code></p></td>
+</tr>
+<tr class="row-odd"><td><p>sparc64</p></td>
+<td><p><code class="docutils literal notranslate"><span 
class="pre">sparc64</span></code></p></td>
+</tr>
+<tr class="row-even"><td><p>Wasm (32-bit)</p></td>
+<td><p><code class="docutils literal notranslate"><span 
class="pre">wasm32</span></code></p></td>
+</tr>
+<tr class="row-odd"><td><p>Wasm (64-bit)</p></td>
+<td><p><code class="docutils literal notranslate"><span 
class="pre">wasm64</span></code></p></td>
+</tr>
+</tbody>
+</table>
+</div>
+<p>The construction of the platform tuple is: <code class="docutils literal 
notranslate"><span class="pre">&lt;OS&gt;_&lt;Architecture&gt;</span></code>, 
for example:
+<code class="docutils literal notranslate"><span 
class="pre">linux_amd64</span></code>.</p>
+<div class="admonition note">
+<p class="admonition-title">Note</p>
+<p>For alternative scenarios such as using musl instead of the GNU C Library
+(glibc) or MinGW, the tuple should have the appropriate suffix for that
+environment. i.e. <code class="docutils literal notranslate"><span 
class="pre">linux_amd64_musl</span></code> or <code class="docutils literal 
notranslate"><span class="pre">windows_amd64_mingw</span></code>.</p>
+</div>
+</section>
 </section>
 <section id="manifest-location-and-discovery">
 <h3>Manifest Location and Discovery<a class="headerlink" 
href="#manifest-location-and-discovery" title="Link to this heading">¶</a></h3>
@@ -833,7 +947,10 @@ United States and other countries.
 <li><a class="reference internal" href="#">ADBC Driver Manager and 
Manifests</a><ul>
 <li><a class="reference internal" href="#directly-loading-a-driver">Directly 
Loading a Driver</a></li>
 <li><a class="reference internal" href="#driver-manifests">Driver 
Manifests</a><ul>
-<li><a class="reference internal" href="#manifest-structure">Manifest 
Structure</a></li>
+<li><a class="reference internal" href="#manifest-structure">Manifest 
Structure</a><ul>
+<li><a class="reference internal" href="#platform-tuples">Platform 
Tuples</a></li>
+</ul>
+</li>
 <li><a class="reference internal" 
href="#manifest-location-and-discovery">Manifest Location and Discovery</a><ul>
 <li><a class="reference internal" href="#unix-like-platforms">Unix-like 
Platforms</a></li>
 <li><a class="reference internal" href="#windows">Windows</a></li>
diff --git a/main/r/adbcbigquery/pkgdown.yml b/main/r/adbcbigquery/pkgdown.yml
index a55b235b4..b7ba91189 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-20T01:13Z
+last_built: 2025-08-20T20:02Z
 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 f4c32d2c3..91a5313be 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-20T01:13Z
+last_built: 2025-08-20T20:02Z
 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 98ac60e1f..1f1ab4495 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 
0x558cf8467f50&gt; </span>
+<span class="r-out co"><span class="r-pr">#&gt;</span> &lt;adbc_connection at 
0x55cf0e51c2c0&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 0x558cf4545a90&gt; </span>
+<span class="r-out co"><span class="r-pr">#&gt;</span>  $ 
database:&lt;adbc_database at 0x55cf0d94e0f0&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 8be95434a..652b92add 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 
0x558cf847f4a0&gt; </span>
+<span class="r-out co"><span class="r-pr">#&gt;</span> &lt;adbc_database at 
0x55cf0d9646d0&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 db2efa1d8..b84f6d98c 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 
0x558cf836f7b0&gt; </span>
+<span class="r-out co"><span class="r-pr">#&gt;</span> &lt;adbc_statement at 
0x55cf0d7b9c20&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 0x558cf31d3b40&gt; </span>
+<span class="r-out co"><span class="r-pr">#&gt;</span>  $ 
connection:&lt;adbc_connection at 0x55cf0da536a0&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 0x558cf808a6b0&gt; </span>
+<span class="r-out co"><span class="r-pr">#&gt;</span>   ..$ 
database:&lt;adbc_database at 0x55cf0d9f69d0&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 46bbc9d39..3d2796cd2 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 c154b5cea..e12d5365f 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-20T01:13Z
+last_built: 2025-08-20T20:02Z
 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 76f44fb7d..e9be03495 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-20T01:13Z
+last_built: 2025-08-20T20:02Z
 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 6d97655b5..50b154de8 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-20T01:13Z
+last_built: 2025-08-20T20:02Z
 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 edc98fbdd..7becb74f3 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-20T01:13Z
+last_built: 2025-08-20T20:02Z
 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 d2d93e381..61db3d3ce 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