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

commit 45cefd1b2d8b05f30d58839aaab8d214854b0a31
Author: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
AuthorDate: Wed Feb 18 02:49:29 2026 +0000

    publish documentation
---
 main/_sources/development/releasing.rst.txt        | 37 +++++++-------
 main/_sources/driver/installation.rst.txt          | 58 ++++++++--------------
 main/development/releasing.html                    | 29 ++++++-----
 main/driver/installation.html                      | 45 +++--------------
 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, 84 insertions(+), 125 deletions(-)

diff --git a/main/_sources/development/releasing.rst.txt 
b/main/_sources/development/releasing.rst.txt
index 6dd99b38d..935b7c310 100644
--- a/main/_sources/development/releasing.rst.txt
+++ b/main/_sources/development/releasing.rst.txt
@@ -420,22 +420,6 @@ Be sure to go through on the following checklist:
 
    A conda-forge or feedstock maintainer can review and merge.
 
-.. dropdown:: Announce the new release
-   :class-title: sd-fs-5
-   :class-container: sd-shadow-md
-
-   Write a release announcement and send to [email protected] and
-   [email protected].
-
-   The announcement to [email protected] must be sent from your apache.org
-   e-mail address to be accepted.
-
-   Template:
-
-   .. code-block:: Bash
-
-      dev/release/post-09-announce.sh
-
 .. dropdown:: Remove old artifacts
    :class-title: sd-fs-5
    :class-container: sd-shadow-md
@@ -444,7 +428,7 @@ Be sure to go through on the following checklist:
 
    .. code-block:: Bash
 
-      dev/release/post-10-remove-old-artifacts.sh
+      dev/release/post-09-remove-old-artifacts.sh
 
 .. dropdown:: Bump versions
    :class-title: sd-fs-5
@@ -470,4 +454,23 @@ Be sure to go through on the following checklist:
       # dev/release/post-12-website.sh ../arrow-site
       dev/release/post-12-website.sh <arrow-site-dir>
 
+.. dropdown:: Announce the new release
+   :class-title: sd-fs-5
+   :class-container: sd-shadow-md
+
+   Write a release announcement and send to [email protected] and
+   [email protected].  The script below will generate an announcement.  It
+   requires you to provide the URL of the blog post above, so this cannot be
+   sent until the blog post is published.  Also, it expects to be run from the
+   *release branch* and not ``main``.
+
+   The announcement to [email protected] must be sent from your apache.org
+   e-mail address to be accepted.
+
+   Template:
+
+   .. code-block:: Bash
+
+      dev/release/post-10-announce.sh
+
 .. _nightly-website.yml: 
https://github.com/apache/arrow-adbc/actions/workflows/nightly-website.yml
diff --git a/main/_sources/driver/installation.rst.txt 
b/main/_sources/driver/installation.rst.txt
index a74cebe13..576e6440f 100644
--- a/main/_sources/driver/installation.rst.txt
+++ b/main/_sources/driver/installation.rst.txt
@@ -19,6 +19,19 @@
 Installation
 ============
 
+.. We can't link to things like conda-forge or crates.io because we
+   technically do not vote on those packages as part of the release; they are
+   created post-release. (Python wheels are voted on, though.) If we want to
+   fix this, we would have to do something like provide prereleases on these
+   platforms that we promote post-vote.
+
+   The main Arrow project links to unofficial releases with a disclaimer, but
+   as far as I can tell, this isn't actually allowed. Given our announce
+   emails are getting rejected, let's not risk it.
+
+   https://apache.org/legal/release-policy#publication
+   > Your project's download page can only link to release artifacts that your 
PMC has approved.
+
 .. note::
 
    See individual driver pages in the sidebar for specific installation 
instructions.
@@ -28,7 +41,7 @@ Source
 
 Download the latest source release: |source_download| (|source_checksum|, 
|source_signature|)
 
-To verify a release, please see the `instructions`_ page  and the project's 
`KEYS`_ file.
+When downloading, please check the SHA512 checksum, and verify the 
OpenPGP-compatible signature against the project's `KEYS`_ file.  Both the 
checksum and signature are provided above.  See the `instructions`_ page for 
more details.
 
 Compilation instructions can be found in `CONTRIBUTING.md`_.
 
@@ -39,18 +52,14 @@ Compilation instructions can be found in `CONTRIBUTING.md`_.
 C/C++
 =====
 
-Install the appropriate driver package.  You can use conda-forge_, ``apt`` or 
``dnf``.
-
-conda-forge:
-
-- ``mamba install libadbc-driver-flightsql``
-- ``mamba install libadbc-driver-postgresql``
-- ``mamba install libadbc-driver-sqlite``
+Install the appropriate driver package.  Packages for ``apt`` and ``dnf`` are 
provided as part of official releases.
 
 You can use ``apt`` on the following platforms:
 
-- Debian GNU/Linux bookworm
-- Ubuntu 22.04
+- Debian GNU/Linux 12 ("bookworm")
+- Debian GNU/Linux 13 ("trixie")
+- Ubuntu 22.04 LTS ("jammy")
+- Ubuntu 24.04 LTS ("noble")
 
 Prepare the Apache Arrow APT repository:
 
@@ -109,16 +118,6 @@ Then they can be used via CMake, e.g.:
 
    target_link_libraries(myapp PRIVATE 
AdbcDriverPostgreSQL::adbc_driver_postgresql_shared)
 
-.. _conda-forge: https://conda-forge.org/
-
-Go
-==
-
-Add a dependency on the driver package, for example:
-
-- ``go get -u github.com/apache/arrow-adbc/go/adbc@latest``
-- ``go get -u github.com/apache/arrow-adbc/go/adbc/driver/flightsql@latest``
-
 Java
 ====
 
@@ -141,15 +140,8 @@ For example, from PyPI:
 - ``pip install adbc-driver-snowflake``
 - ``pip install adbc-driver-sqlite``
 
-From conda-forge_:
-
-- ``mamba install adbc-driver-flightsql``
-- ``mamba install adbc-driver-postgresql``
-- ``mamba install adbc-driver-snowflake``
-- ``mamba install adbc-driver-sqlite``
-
 R
-=
+===
 
 Install the appropriate driver package from CRAN:
 
@@ -171,13 +163,3 @@ Ruby
 
 Install the appropriate driver package for C/C++. You can use it from
 Ruby.
-
-Rust
-====
-
-Add a dependency on ``adbc_core`` and any driver packages
-(e.g. ``adbc_datafusion``):
-
-.. code-block:: shell
-
-   cargo add adbc_core adbc_datafusion
diff --git a/main/development/releasing.html b/main/development/releasing.html
index b2d816e0f..fe746ced3 100644
--- a/main/development/releasing.html
+++ b/main/development/releasing.html
@@ -766,21 +766,9 @@ dev/release/post-08-rust.sh
 </div>
 </details><details class="sd-sphinx-override sd-dropdown sd-card sd-mb-3 
sd-shadow-md">
 <summary class="sd-summary-title sd-card-header sd-fs-5">
-<span class="sd-summary-text">Announce the new release</span><span 
class="sd-summary-state-marker sd-summary-chevron-right"><svg version="1.1" 
width="1.5em" height="1.5em" class="sd-octicon sd-octicon-chevron-right" 
viewBox="0 0 24 24" aria-hidden="true"><path d="M8.72 18.78a.75.75 0 0 1 
0-1.06L14.44 12 8.72 6.28a.751.751 0 0 1 .018-1.042.751.751 0 0 1 
1.042-.018l6.25 6.25a.75.75 0 0 1 0 1.06l-6.25 6.25a.75.75 0 0 1-1.06 
0Z"></path></svg></span></summary><div class="sd-summary-content sd [...]
-<p class="sd-card-text">Write a release announcement and send to <a 
class="reference external" 
href="mailto:announce&#37;&#52;&#48;apache&#46;org";>announce<span>&#64;</span>apache<span>&#46;</span>org</a>
 and
-<a class="reference external" 
href="mailto:dev&#37;&#52;&#48;arrow&#46;apache&#46;org";>dev<span>&#64;</span>arrow<span>&#46;</span>apache<span>&#46;</span>org</a>.</p>
-<p class="sd-card-text">The announcement to <a class="reference external" 
href="mailto:announce&#37;&#52;&#48;apache&#46;org";>announce<span>&#64;</span>apache<span>&#46;</span>org</a>
 must be sent from your apache.org
-e-mail address to be accepted.</p>
-<p class="sd-card-text">Template:</p>
-<div class="highlight-Bash notranslate"><div 
class="highlight"><pre><span></span>dev/release/post-09-announce.sh
-</pre></div>
-</div>
-</div>
-</details><details class="sd-sphinx-override sd-dropdown sd-card sd-mb-3 
sd-shadow-md">
-<summary class="sd-summary-title sd-card-header sd-fs-5">
 <span class="sd-summary-text">Remove old artifacts</span><span 
class="sd-summary-state-marker sd-summary-chevron-right"><svg version="1.1" 
width="1.5em" height="1.5em" class="sd-octicon sd-octicon-chevron-right" 
viewBox="0 0 24 24" aria-hidden="true"><path d="M8.72 18.78a.75.75 0 0 1 
0-1.06L14.44 12 8.72 6.28a.751.751 0 0 1 .018-1.042.751.751 0 0 1 
1.042-.018l6.25 6.25a.75.75 0 0 1 0 1.06l-6.25 6.25a.75.75 0 0 1-1.06 
0Z"></path></svg></span></summary><div class="sd-summary-content sd-car [...]
 <p class="sd-card-text">Remove RC artifacts on <a class="reference external" 
href="https://dist.apache.org/repos/dist/dev/arrow/";>https://dist.apache.org/repos/dist/dev/arrow/</a>
 and old release artifacts on <a class="reference external" 
href="https://dist.apache.org/repos/dist/release/arrow";>https://dist.apache.org/repos/dist/release/arrow</a>
 to follow <a class="reference external" 
href="https://infra.apache.org/release-download-pages.html#current-and-older-releases";>the
 ASF policy</a>:</p>
-<div class="highlight-Bash notranslate"><div 
class="highlight"><pre><span></span>dev/release/post-10-remove-old-artifacts.sh
+<div class="highlight-Bash notranslate"><div 
class="highlight"><pre><span></span>dev/release/post-09-remove-old-artifacts.sh
 </pre></div>
 </div>
 </div>
@@ -803,6 +791,21 @@ dev/release/post-12-website.sh<span class="w"> 
</span>&lt;arrow-site-dir&gt;
 </pre></div>
 </div>
 </div>
+</details><details class="sd-sphinx-override sd-dropdown sd-card sd-mb-3 
sd-shadow-md">
+<summary class="sd-summary-title sd-card-header sd-fs-5">
+<span class="sd-summary-text">Announce the new release</span><span 
class="sd-summary-state-marker sd-summary-chevron-right"><svg version="1.1" 
width="1.5em" height="1.5em" class="sd-octicon sd-octicon-chevron-right" 
viewBox="0 0 24 24" aria-hidden="true"><path d="M8.72 18.78a.75.75 0 0 1 
0-1.06L14.44 12 8.72 6.28a.751.751 0 0 1 .018-1.042.751.751 0 0 1 
1.042-.018l6.25 6.25a.75.75 0 0 1 0 1.06l-6.25 6.25a.75.75 0 0 1-1.06 
0Z"></path></svg></span></summary><div class="sd-summary-content sd [...]
+<p class="sd-card-text">Write a release announcement and send to <a 
class="reference external" 
href="mailto:announce&#37;&#52;&#48;apache&#46;org";>announce<span>&#64;</span>apache<span>&#46;</span>org</a>
 and
+<a class="reference external" 
href="mailto:dev&#37;&#52;&#48;arrow&#46;apache&#46;org";>dev<span>&#64;</span>arrow<span>&#46;</span>apache<span>&#46;</span>org</a>.
  The script below will generate an announcement.  It
+requires you to provide the URL of the blog post above, so this cannot be
+sent until the blog post is published.  Also, it expects to be run from the
+<em>release branch</em> and not <code class="docutils literal 
notranslate"><span class="pre">main</span></code>.</p>
+<p class="sd-card-text">The announcement to <a class="reference external" 
href="mailto:announce&#37;&#52;&#48;apache&#46;org";>announce<span>&#64;</span>apache<span>&#46;</span>org</a>
 must be sent from your apache.org
+e-mail address to be accepted.</p>
+<p class="sd-card-text">Template:</p>
+<div class="highlight-Bash notranslate"><div 
class="highlight"><pre><span></span>dev/release/post-10-announce.sh
+</pre></div>
+</div>
+</div>
 </details></section>
 </section>
 
diff --git a/main/driver/installation.html b/main/driver/installation.html
index 3dde9f92c..e3ffc81ec 100644
--- a/main/driver/installation.html
+++ b/main/driver/installation.html
@@ -9,10 +9,10 @@
 <meta property="og:type" content="website" />
 <meta property="og:url" 
content="https://arrow.apache.org/adbc/main/driver/installation.html"; />
 <meta property="og:site_name" content="ADBC" />
-<meta property="og:description" content="Source: Download the latest source 
release: apache-arrow-adbc-22.tar.gz( checksum, signature) To verify a release, 
please see the instructions page and the project’s KEYS file. Compilation 
instruct..." />
+<meta property="og:description" content="Source: Download the latest source 
release: apache-arrow-adbc-22.tar.gz( checksum, signature) When downloading, 
please check the SHA512 checksum, and verify the OpenPGP-compatible signature 
against..." />
 <meta property="og:image" 
content="https://arrow.apache.org/adbc/main/_static/banner.png"; />
 <meta property="og:image:alt" content="ADBC" />
-<meta name="description" content="Source: Download the latest source release: 
apache-arrow-adbc-22.tar.gz( checksum, signature) To verify a release, please 
see the instructions page and the project’s KEYS file. Compilation instruct..." 
/>
+<meta name="description" content="Source: Download the latest source release: 
apache-arrow-adbc-22.tar.gz( checksum, signature) When downloading, please 
check the SHA512 checksum, and verify the OpenPGP-compatible signature 
against..." />
 <link rel="index" title="Index" href="../genindex.html"><link rel="search" 
title="Search" href="../search.html"><link rel="next" title="Driver 
Implementation Status" href="status.html"><link rel="prev" title="Driver 
Manager" href="../rust/driver_manager.html">
         <link rel="prefetch" href="../_static/logo-light.png" as="image">
         <link rel="prefetch" href="../_static/logo-dark.png" as="image">
@@ -398,22 +398,18 @@
 <section id="source">
 <h2>Source<a class="headerlink" href="#source" title="Link to this 
heading">¶</a></h2>
 <p>Download the latest source release: <a class="reference external" 
href="https://www.apache.org/dyn/closer.lua/arrow/apache-arrow-adbc-22/apache-arrow-adbc-22.tar.gz";>apache-arrow-adbc-22.tar.gz</a>
 (<a class="reference external" 
href="https://downloads.apache.org/arrow/apache-arrow-adbc-22/apache-arrow-adbc-22.tar.gz.sha512";>checksum</a>,
 <a class="reference external" 
href="https://downloads.apache.org/arrow/apache-arrow-adbc-22/apache-arrow-adbc-22.tar.gz.asc";>signature</a>)</p>
-<p>To verify a release, please see the <a class="reference external" 
href="https://www.apache.org/info/verification.html";>instructions</a> page  and 
the project’s <a class="reference external" 
href="https://downloads.apache.org/arrow/KEYS";>KEYS</a> file.</p>
+<p>When downloading, please check the SHA512 checksum, and verify the 
OpenPGP-compatible signature against the project’s <a class="reference 
external" href="https://downloads.apache.org/arrow/KEYS";>KEYS</a> file.  Both 
the checksum and signature are provided above.  See the <a class="reference 
external" href="https://www.apache.org/info/verification.html";>instructions</a> 
page for more details.</p>
 <p>Compilation instructions can be found in <a class="reference external" 
href="https://github.com/apache/arrow-adbc/blob/main/CONTRIBUTING.md";>CONTRIBUTING.md</a>.</p>
 </section>
 <section id="c-c">
 <h2>C/C++<a class="headerlink" href="#c-c" title="Link to this 
heading">¶</a></h2>
-<p>Install the appropriate driver package.  You can use <a class="reference 
external" href="https://conda-forge.org/";>conda-forge</a>, <code 
class="docutils literal notranslate"><span class="pre">apt</span></code> or 
<code class="docutils literal notranslate"><span 
class="pre">dnf</span></code>.</p>
-<p>conda-forge:</p>
-<ul class="simple">
-<li><p><code class="docutils literal notranslate"><span 
class="pre">mamba</span> <span class="pre">install</span> <span 
class="pre">libadbc-driver-flightsql</span></code></p></li>
-<li><p><code class="docutils literal notranslate"><span 
class="pre">mamba</span> <span class="pre">install</span> <span 
class="pre">libadbc-driver-postgresql</span></code></p></li>
-<li><p><code class="docutils literal notranslate"><span 
class="pre">mamba</span> <span class="pre">install</span> <span 
class="pre">libadbc-driver-sqlite</span></code></p></li>
-</ul>
+<p>Install the appropriate driver package.  Packages for <code class="docutils 
literal notranslate"><span class="pre">apt</span></code> and <code 
class="docutils literal notranslate"><span class="pre">dnf</span></code> are 
provided as part of official releases.</p>
 <p>You can use <code class="docutils literal notranslate"><span 
class="pre">apt</span></code> on the following platforms:</p>
 <ul class="simple">
-<li><p>Debian GNU/Linux bookworm</p></li>
-<li><p>Ubuntu 22.04</p></li>
+<li><p>Debian GNU/Linux 12 (“bookworm”)</p></li>
+<li><p>Debian GNU/Linux 13 (“trixie”)</p></li>
+<li><p>Ubuntu 22.04 LTS (“jammy”)</p></li>
+<li><p>Ubuntu 24.04 LTS (“noble”)</p></li>
 </ul>
 <p>Prepare the Apache Arrow APT repository:</p>
 <div class="highlight-bash notranslate"><div 
class="highlight"><pre><span></span>sudo<span class="w"> </span>apt<span 
class="w"> </span>update
@@ -467,14 +463,6 @@ sudo<span class="w"> </span>subscription-manager<span 
class="w"> </span>repos<sp
 </pre></div>
 </div>
 </section>
-<section id="go">
-<h2>Go<a class="headerlink" href="#go" title="Link to this heading">¶</a></h2>
-<p>Add a dependency on the driver package, for example:</p>
-<ul class="simple">
-<li><p><code class="docutils literal notranslate"><span class="pre">go</span> 
<span class="pre">get</span> <span class="pre">-u</span> <span 
class="pre">github.com/apache/arrow-adbc/go/adbc&#64;latest</span></code></p></li>
-<li><p><code class="docutils literal notranslate"><span class="pre">go</span> 
<span class="pre">get</span> <span class="pre">-u</span> <span 
class="pre">github.com/apache/arrow-adbc/go/adbc/driver/flightsql&#64;latest</span></code></p></li>
-</ul>
-</section>
 <section id="java">
 <h2>Java<a class="headerlink" href="#java" title="Link to this 
heading">¶</a></h2>
 <p>Add a dependency on the driver package, for example:</p>
@@ -497,13 +485,6 @@ sudo<span class="w"> </span>subscription-manager<span 
class="w"> </span>repos<sp
 <li><p><code class="docutils literal notranslate"><span class="pre">pip</span> 
<span class="pre">install</span> <span 
class="pre">adbc-driver-snowflake</span></code></p></li>
 <li><p><code class="docutils literal notranslate"><span class="pre">pip</span> 
<span class="pre">install</span> <span 
class="pre">adbc-driver-sqlite</span></code></p></li>
 </ul>
-<p>From <a class="reference external" 
href="https://conda-forge.org/";>conda-forge</a>:</p>
-<ul class="simple">
-<li><p><code class="docutils literal notranslate"><span 
class="pre">mamba</span> <span class="pre">install</span> <span 
class="pre">adbc-driver-flightsql</span></code></p></li>
-<li><p><code class="docutils literal notranslate"><span 
class="pre">mamba</span> <span class="pre">install</span> <span 
class="pre">adbc-driver-postgresql</span></code></p></li>
-<li><p><code class="docutils literal notranslate"><span 
class="pre">mamba</span> <span class="pre">install</span> <span 
class="pre">adbc-driver-snowflake</span></code></p></li>
-<li><p><code class="docutils literal notranslate"><span 
class="pre">mamba</span> <span class="pre">install</span> <span 
class="pre">adbc-driver-sqlite</span></code></p></li>
-</ul>
 </section>
 <section id="r">
 <h2>R<a class="headerlink" href="#r" title="Link to this heading">¶</a></h2>
@@ -524,14 +505,6 @@ sudo<span class="w"> </span>subscription-manager<span 
class="w"> </span>repos<sp
 <p>Install the appropriate driver package for C/C++. You can use it from
 Ruby.</p>
 </section>
-<section id="rust">
-<h2>Rust<a class="headerlink" href="#rust" title="Link to this 
heading">¶</a></h2>
-<p>Add a dependency on <code class="docutils literal notranslate"><span 
class="pre">adbc_core</span></code> and any driver packages
-(e.g. <code class="docutils literal notranslate"><span 
class="pre">adbc_datafusion</span></code>):</p>
-<div class="highlight-shell notranslate"><div 
class="highlight"><pre><span></span>cargo<span class="w"> </span>add<span 
class="w"> </span>adbc_core<span class="w"> </span>adbc_datafusion
-</pre></div>
-</div>
-</section>
 </section>
 
         </article>
@@ -595,12 +568,10 @@ United States and other countries.
 <li><a class="reference internal" href="#">Installation</a><ul>
 <li><a class="reference internal" href="#source">Source</a></li>
 <li><a class="reference internal" href="#c-c">C/C++</a></li>
-<li><a class="reference internal" href="#go">Go</a></li>
 <li><a class="reference internal" href="#java">Java</a></li>
 <li><a class="reference internal" href="#python">Python</a></li>
 <li><a class="reference internal" href="#r">R</a></li>
 <li><a class="reference internal" href="#ruby">Ruby</a></li>
-<li><a class="reference internal" href="#rust">Rust</a></li>
 </ul>
 </li>
 </ul>
diff --git a/main/r/adbcbigquery/pkgdown.yml b/main/r/adbcbigquery/pkgdown.yml
index 7af0108c5..64acf013e 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-18T02:35Z
+last_built: 2026-02-18T02:48Z
 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 2591a0ef6..00aa342cb 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-18T02:35Z
+last_built: 2026-02-18T02:48Z
 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 8dec1a7c6..85327e34a 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 
0x5648ad3c8f40&gt; </span>
+<span class="r-out co"><span class="r-pr">#&gt;</span> &lt;adbc_connection at 
0x55c1325c96e0&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 0x5648ad5d23a0&gt; </span>
+<span class="r-out co"><span class="r-pr">#&gt;</span>  $ 
database:&lt;adbc_database at 0x55c132994020&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 edef71e8c..53d246bc3 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 0x5648ad3c8f40> 
+#> <adbc_connection at 0x55c1325c96e0> 
 #> List of 1
-#>  $ database:<adbc_database at 0x5648ad5d23a0> 
+#>  $ database:<adbc_database at 0x55c132994020> 
 #> 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 64bb85265..88b2a4b97 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 
0x5648ad4bf4f0&gt; </span>
+<span class="r-out co"><span class="r-pr">#&gt;</span> &lt;adbc_database at 
0x55c132bd81b0&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 1e34cfe5b..6c29a5069 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 0x5648ad4bf4f0> 
+#> <adbc_database at 0x55c132bd81b0> 
 #> 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 41bc7a14e..eec47e495 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 
0x5648ad5d21f0&gt; </span>
+<span class="r-out co"><span class="r-pr">#&gt;</span> &lt;adbc_statement at 
0x55c131ee35f0&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 0x5648a9f684d0&gt; </span>
+<span class="r-out co"><span class="r-pr">#&gt;</span>  $ 
connection:&lt;adbc_connection at 0x55c1323cddc0&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 0x5648ad3b6c90&gt; </span>
+<span class="r-out co"><span class="r-pr">#&gt;</span>   ..$ 
database:&lt;adbc_database at 0x55c132b5e5d0&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 3240f67bd..a5f1b5421 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 0x5648ad5d21f0> 
+#> <adbc_statement at 0x55c131ee35f0> 
 #> List of 1
-#>  $ connection:<adbc_connection at 0x5648a9f684d0> 
+#>  $ connection:<adbc_connection at 0x55c1323cddc0> 
 #> List of 1
-#>   ..$ database:<adbc_database at 0x5648ad3b6c90> 
+#>   ..$ database:<adbc_database at 0x55c132b5e5d0> 
 #> 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 e1979ccdf..101c8df58 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 e29d7e6a3..3a1d8ebd6 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-18T02:35Z
+last_built: 2026-02-18T02:48Z
 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 a140f8945..92d9ddf24 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-18T02:35Z
+last_built: 2026-02-18T02:48Z
 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 b1c5b083c..50490d426 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-18T02:35Z
+last_built: 2026-02-18T02:48Z
 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 a604becdf..d64d78d64 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-18T02:35Z
+last_built: 2026-02-18T02:48Z
 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 11a97f03e..8666cbbcc 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