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 30592ea7f publish documentation
30592ea7f is described below
commit 30592ea7f4f8d9165eab6cd614215961d28bc5ce
Author: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
AuthorDate: Wed May 28 07:14:24 2025 +0000
publish documentation
---
main/_sources/driver/flight_sql.rst.txt | 2 +-
main/_sources/driver/postgresql.rst.txt | 4 ++--
main/_sources/driver/snowflake.rst.txt | 2 +-
main/_sources/faq.rst.txt | 2 +-
main/_sources/format/specification.rst.txt | 2 +-
main/_sources/python/recipe/flight_sql.rst.txt | 2 +-
main/driver/flight_sql.html | 2 +-
main/driver/postgresql.html | 4 ++--
main/driver/snowflake.html | 2 +-
main/faq.html | 2 +-
main/format/specification.html | 2 +-
main/python/recipe/flight_sql.html | 6 +++---
main/r/adbcbigquery/pkgdown.yml | 2 +-
main/r/adbcdrivermanager/pkgdown.yml | 2 +-
main/r/adbcdrivermanager/reference/adbc_connection_init.html | 4 ++--
main/r/adbcdrivermanager/reference/adbc_database_init.html | 2 +-
main/r/adbcdrivermanager/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 +-
23 files changed, 30 insertions(+), 30 deletions(-)
diff --git a/main/_sources/driver/flight_sql.rst.txt
b/main/_sources/driver/flight_sql.rst.txt
index d3a588be5..d31ddfd63 100644
--- a/main/_sources/driver/flight_sql.rst.txt
+++ b/main/_sources/driver/flight_sql.rst.txt
@@ -223,7 +223,7 @@ The options used for creating the Flight RPC client can be
customized.
``adbc.flight.sql.client_option.with_max_msg_size``
The maximum message size to accept from the server. The driver
defaults to 16 MiB since Flight services tend to return larger
- reponse payloads. Should be a positive integer number of bytes.
+ response payloads. Should be a positive integer number of bytes.
Python: :attr:`adbc_driver_flightsql.DatabaseOptions.WITH_MAX_MSG_SIZE`
diff --git a/main/_sources/driver/postgresql.rst.txt
b/main/_sources/driver/postgresql.rst.txt
index 8bcfd2db4..e79838df4 100644
--- a/main/_sources/driver/postgresql.rst.txt
+++ b/main/_sources/driver/postgresql.rst.txt
@@ -39,7 +39,7 @@ overall approach.
wire protocol and has a basic level of support in the ADBC
PostgreSQL driver. Because Redshift does not support reading or
writing COPY in PostgreSQL binary format, the optimizations that
- accellerate non-Redshift queries are not enabled when connecting
+ accelerate non-Redshift queries are not enabled when connecting
to a Redshift database. This functionality is experimental.
Installation
@@ -348,7 +348,7 @@ also always present. This helps differentiate when the
driver intentionally
returned a binary column from when it returned a binary column as a fallback.
.. warning:: Currently, the driver also attaches a metadata key named
- ``ADBC:posgresql:typname`` to the schema field of the unknown
+ ``ADBC:postgresql:typname`` to the schema field of the unknown
column, but this has been deprecated in favor of the Opaque type
and you should not rely on this key continuing to exist.
diff --git a/main/_sources/driver/snowflake.rst.txt
b/main/_sources/driver/snowflake.rst.txt
index 1dd931148..09b77327f 100644
--- a/main/_sources/driver/snowflake.rst.txt
+++ b/main/_sources/driver/snowflake.rst.txt
@@ -291,7 +291,7 @@ and resource usage may be tuned with the following options
on the :c:struct:`Adb
``adbc.snowflake.statement.ingest_upload_concurrency``
Number of Parquet files to upload in parallel. Greater concurrency can
smooth out TCP congestion and help make
- use of available network bandwith, but will increase memory utilization.
Default is 8. If set to 0, default value is used.
+ use of available network bandwidth, but will increase memory utilization.
Default is 8. If set to 0, default value is used.
Cannot be negative.
``adbc.snowflake.statement.ingest_copy_concurrency``
diff --git a/main/_sources/faq.rst.txt b/main/_sources/faq.rst.txt
index 9d1df362d..4489c4b9c 100644
--- a/main/_sources/faq.rst.txt
+++ b/main/_sources/faq.rst.txt
@@ -174,7 +174,7 @@ And then what is the "ADBC JDBC driver"?
The ADBC JDBC driver, or a hypothetical ADBC ODBC driver, adapts the
JDBC API to the ADBC API, so that an ADBC user can interact with
databases that have JDBC APIs available. While this doesn't give you
-the best possible performance (you're paying for tranposing the data
+the best possible performance (you're paying for transposing the data
back and forth!), it does save you the hassle of writing those
conversions yourself.
diff --git a/main/_sources/format/specification.rst.txt
b/main/_sources/format/specification.rst.txt
index e3fae316c..ce242e96c 100644
--- a/main/_sources/format/specification.rst.txt
+++ b/main/_sources/format/specification.rst.txt
@@ -245,7 +245,7 @@ new canonical options.
:ref:`specification-rich-error-metadata` has been added, allowing clients to
get additional error metadata.
-The ability to retrive table/column :ref:`statistics
+The ability to retrieve table/column :ref:`statistics
<specification-statistics>` was added. The goal here is to make ADBC work
better in federation scenarios, where one query engine wants to read Arrow
data from another database.
diff --git a/main/_sources/python/recipe/flight_sql.rst.txt
b/main/_sources/python/recipe/flight_sql.rst.txt
index d4c2ba1ff..6ceb5845c 100644
--- a/main/_sources/python/recipe/flight_sql.rst.txt
+++ b/main/_sources/python/recipe/flight_sql.rst.txt
@@ -19,7 +19,7 @@
Flight SQL Recipes
==================
-Some of these recipes are written againt a demo Flight SQL service backed by
+Some of these recipes are written against a demo Flight SQL service backed by
SQLite. You can run it yourself as follows:
.. code-block:: shell
diff --git a/main/driver/flight_sql.html b/main/driver/flight_sql.html
index 5b2b3a411..31a81ec40 100644
--- a/main/driver/flight_sql.html
+++ b/main/driver/flight_sql.html
@@ -710,7 +710,7 @@ Value should be <code class="docutils literal
notranslate"><span class="pre">tru
</dd>
<dt><code class="docutils literal notranslate"><span
class="pre">adbc.flight.sql.client_option.with_max_msg_size</span></code></dt><dd><p>The
maximum message size to accept from the server. The driver
defaults to 16 MiB since Flight services tend to return larger
-reponse payloads. Should be a positive integer number of bytes.</p>
+response payloads. Should be a positive integer number of bytes.</p>
<p>Python: <a class="reference internal"
href="../python/api/adbc_driver_flightsql.html#adbc_driver_flightsql.DatabaseOptions.WITH_MAX_MSG_SIZE"
title="adbc_driver_flightsql.DatabaseOptions.WITH_MAX_MSG_SIZE"><code
class="xref py py-attr docutils literal notranslate"><span
class="pre">adbc_driver_flightsql.DatabaseOptions.WITH_MAX_MSG_SIZE</span></code></a></p>
</dd>
<dt><code class="docutils literal notranslate"><span
class="pre">adbc.flight.sql.authorization_header</span></code></dt><dd><p>Directly
specify the value of the <code class="docutils literal notranslate"><span
class="pre">authorization</span></code> header to send on all
diff --git a/main/driver/postgresql.html b/main/driver/postgresql.html
index 2c8e4e59a..6e1f19f25 100644
--- a/main/driver/postgresql.html
+++ b/main/driver/postgresql.html
@@ -409,7 +409,7 @@ different ADBC features is still ongoing.</p>
wire protocol and has a basic level of support in the ADBC
PostgreSQL driver. Because Redshift does not support reading or
writing COPY in PostgreSQL binary format, the optimizations that
-accellerate non-Redshift queries are not enabled when connecting
+accelerate non-Redshift queries are not enabled when connecting
to a Redshift database. This functionality is experimental.</p>
</div>
<section id="installation">
@@ -738,7 +738,7 @@ returned a binary column from when it returned a binary
column as a fallback.</p
<div class="admonition warning">
<p class="admonition-title">Warning</p>
<p>Currently, the driver also attaches a metadata key named
-<code class="docutils literal notranslate"><span
class="pre">ADBC:posgresql:typname</span></code> to the schema field of the
unknown
+<code class="docutils literal notranslate"><span
class="pre">ADBC:postgresql:typname</span></code> to the schema field of the
unknown
column, but this has been deprecated in favor of the Opaque type
and you should not rely on this key continuing to exist.</p>
</div>
diff --git a/main/driver/snowflake.html b/main/driver/snowflake.html
index 971b3a163..f8747f3ec 100644
--- a/main/driver/snowflake.html
+++ b/main/driver/snowflake.html
@@ -640,7 +640,7 @@ and resource usage may be tuned with the following options
on the <a class="refe
but may need to be adjusted if running in a constrained environment. If set to
0, default value is used. Cannot be negative.</p>
</dd>
<dt><code class="docutils literal notranslate"><span
class="pre">adbc.snowflake.statement.ingest_upload_concurrency</span></code></dt><dd><p>Number
of Parquet files to upload in parallel. Greater concurrency can smooth out TCP
congestion and help make
-use of available network bandwith, but will increase memory utilization.
Default is 8. If set to 0, default value is used.
+use of available network bandwidth, but will increase memory utilization.
Default is 8. If set to 0, default value is used.
Cannot be negative.</p>
</dd>
<dt><code class="docutils literal notranslate"><span
class="pre">adbc.snowflake.statement.ingest_copy_concurrency</span></code></dt><dd><p>Maximum
number of COPY operations to run concurrently. Bulk ingestion performance is
optimized by executing COPY
diff --git a/main/faq.html b/main/faq.html
index 3f924d81c..83e9f9f9d 100644
--- a/main/faq.html
+++ b/main/faq.html
@@ -522,7 +522,7 @@ SQL, a custom Arrow-native protocol, or no Arrow-native
protocol.</p>
<p>The ADBC JDBC driver, or a hypothetical ADBC ODBC driver, adapts the
JDBC API to the ADBC API, so that an ADBC user can interact with
databases that have JDBC APIs available. While this doesn’t give you
-the best possible performance (you’re paying for tranposing the data
+the best possible performance (you’re paying for transposing the data
back and forth!), it does save you the hassle of writing those
conversions yourself.</p>
<p>Similar libraries already exist; for instance, <a class="reference
external" href="https://turbodbc.readthedocs.io/en/latest/">Turbodbc</a> wraps
any
diff --git a/main/format/specification.html b/main/format/specification.html
index e0c483a9c..c791dcaa2 100644
--- a/main/format/specification.html
+++ b/main/format/specification.html
@@ -603,7 +603,7 @@ table already exists, it will not error.</p></li>
</ul>
<p><a class="reference internal"
href="#specification-rich-error-metadata"><span class="std std-ref">Rich Error
Metadata</span></a> has been added, allowing clients to
get additional error metadata.</p>
-<p>The ability to retrive table/column <a class="reference internal"
href="#specification-statistics"><span class="std
std-ref">statistics</span></a> was added. The goal here is to make ADBC work
+<p>The ability to retrieve table/column <a class="reference internal"
href="#specification-statistics"><span class="std
std-ref">statistics</span></a> was added. The goal here is to make ADBC work
better in federation scenarios, where one query engine wants to read Arrow
data from another database.</p>
<p><a class="reference internal"
href="#specification-incremental-execution"><span class="std
std-ref">Incremental execution</span></a> allows
diff --git a/main/python/recipe/flight_sql.html
b/main/python/recipe/flight_sql.html
index 788c9a4b4..406aad811 100644
--- a/main/python/recipe/flight_sql.html
+++ b/main/python/recipe/flight_sql.html
@@ -9,10 +9,10 @@
<meta property="og:type" content="website" />
<meta property="og:url"
content="https://arrow.apache.org/adbc/main/python/recipe/flight_sql.html" />
<meta property="og:site_name" content="ADBC" />
-<meta property="og:description" content="Some of these recipes are written
againt a demo Flight SQL service backed by SQLite. You can run it yourself as
follows: Other recipes work using the OSS version of Dremio: If you have the
ADBC rep..." />
+<meta property="og:description" content="Some of these recipes are written
against a demo Flight SQL service backed by SQLite. You can run it yourself as
follows: Other recipes work using the OSS version of Dremio: If you have the
ADBC re..." />
<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="Some of these recipes are written againt a
demo Flight SQL service backed by SQLite. You can run it yourself as follows:
Other recipes work using the OSS version of Dremio: If you have the ADBC
rep..." />
+<meta name="description" content="Some of these recipes are written against a
demo Flight SQL service backed by SQLite. You can run it yourself as follows:
Other recipes work using the OSS version of Dremio: If you have the ADBC re..."
/>
<link rel="index" title="Index" href="../../genindex.html" /><link
rel="search" title="Search" href="../../search.html" /><link rel="next"
title="PostgreSQL Recipes" href="postgresql.html" /><link rel="prev"
title="DBAPI/Driver Manager Recipes" href="driver_manager.html" />
<!-- Generated with Sphinx 8.2.3 and Furo 2024.08.06 -->
@@ -388,7 +388,7 @@
<article role="main" id="furo-main-content">
<section id="flight-sql-recipes">
<h1>Flight SQL Recipes<a class="headerlink" href="#flight-sql-recipes"
title="Link to this heading">¶</a></h1>
-<p>Some of these recipes are written againt a demo Flight SQL service backed by
+<p>Some of these recipes are written against a demo Flight SQL service backed
by
SQLite. You can run it yourself as follows:</p>
<div class="highlight-shell notranslate"><div
class="highlight"><pre><span></span>$<span class="w"> </span>go<span class="w">
</span>install<span class="w"> </span>github.com/apache/arrow-go/v<span
class="si">${</span><span class="nv">ARROW_MAJOR_VERSION</span><span
class="si">}</span>/arrow/flight/flightsql/example/cmd/sqlite_flightsql_server@latest
$<span class="w"> </span>sqlite_flightsql_server<span class="w">
</span>-host<span class="w"> </span><span class="m">0</span>.0.0.0<span
class="w"> </span>-port<span class="w"> </span><span class="m">8080</span>
diff --git a/main/r/adbcbigquery/pkgdown.yml b/main/r/adbcbigquery/pkgdown.yml
index c63c2f3b0..2a51d759f 100644
--- a/main/r/adbcbigquery/pkgdown.yml
+++ b/main/r/adbcbigquery/pkgdown.yml
@@ -2,7 +2,7 @@ pandoc: 3.7.0.1
pkgdown: 2.1.3
pkgdown_sha: ~
articles: {}
-last_built: 2025-05-28T00:08Z
+last_built: 2025-05-28T07:13Z
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 cabc6e586..52bb9e6ab 100644
--- a/main/r/adbcdrivermanager/pkgdown.yml
+++ b/main/r/adbcdrivermanager/pkgdown.yml
@@ -2,7 +2,7 @@ pandoc: 3.7.0.1
pkgdown: 2.1.3
pkgdown_sha: ~
articles: {}
-last_built: 2025-05-28T00:08Z
+last_built: 2025-05-28T07:13Z
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 1a493be9b..ed4b8bcbb 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"><-</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">#></span> <adbc_connection at
0x559a97e60ff0> </span>
+<span class="r-out co"><span class="r-pr">#></span> <adbc_connection at
0x562c70c64ce0> </span>
<span class="r-out co"><span class="r-pr">#></span> List of 1</span>
-<span class="r-out co"><span class="r-pr">#></span> $
database:<adbc_database at 0x559a98269790> </span>
+<span class="r-out co"><span class="r-pr">#></span> $
database:<adbc_database at 0x562c70701060> </span>
<span class="r-out co"><span class="r-pr">#></span> List of 1</span>
<span class="r-out co"><span class="r-pr">#></span> ..$
driver:<adbc_driver_void> List of 2</span>
<span class="r-out co"><span class="r-pr">#></span> .. ..$
driver_init_func:Class 'adbc_driver_init_func' <externalptr> </span>
diff --git a/main/r/adbcdrivermanager/reference/adbc_database_init.html
b/main/r/adbcdrivermanager/reference/adbc_database_init.html
index 7741e64a7..887c8f452 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">#></span> <adbc_database at
0x559a97d44ee0> </span>
+<span class="r-out co"><span class="r-pr">#></span> <adbc_database at
0x562c701fcc10> </span>
<span class="r-out co"><span class="r-pr">#></span> List of 1</span>
<span class="r-out co"><span class="r-pr">#></span> $
driver:<adbc_driver_void> List of 2</span>
<span class="r-out co"><span class="r-pr">#></span> ..$
driver_init_func:Class 'adbc_driver_init_func' <externalptr> </span>
diff --git a/main/r/adbcdrivermanager/reference/adbc_statement_init.html
b/main/r/adbcdrivermanager/reference/adbc_statement_init.html
index 40039c931..81d5b2461 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"><-</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"><-</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">#></span> <adbc_statement at
0x559a984f6740> </span>
+<span class="r-out co"><span class="r-pr">#></span> <adbc_statement at
0x562c70519f60> </span>
<span class="r-out co"><span class="r-pr">#></span> List of 1</span>
-<span class="r-out co"><span class="r-pr">#></span> $
connection:<adbc_connection at 0x559a982cb6a0> </span>
+<span class="r-out co"><span class="r-pr">#></span> $
connection:<adbc_connection at 0x562c6cce87a0> </span>
<span class="r-out co"><span class="r-pr">#></span> List of 1</span>
-<span class="r-out co"><span class="r-pr">#></span> ..$
database:<adbc_database at 0x559a966af8c0> </span>
+<span class="r-out co"><span class="r-pr">#></span> ..$
database:<adbc_database at 0x562c701fcc10> </span>
<span class="r-out co"><span class="r-pr">#></span> List of 1</span>
<span class="r-out co"><span class="r-pr">#></span> .. ..$
driver:<adbc_driver_void> List of 2</span>
<span class="r-out co"><span class="r-pr">#></span> .. .. ..$
driver_init_func:Class 'adbc_driver_init_func' <externalptr> </span>
diff --git a/main/r/adbcdrivermanager/search.json
b/main/r/adbcdrivermanager/search.json
index 49abdfc83..f2a99c159 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 f1ba3b084..0b8c89b4a 100644
--- a/main/r/adbcflightsql/pkgdown.yml
+++ b/main/r/adbcflightsql/pkgdown.yml
@@ -2,7 +2,7 @@ pandoc: 3.7.0.1
pkgdown: 2.1.3
pkgdown_sha: ~
articles: {}
-last_built: 2025-05-28T00:08Z
+last_built: 2025-05-28T07:13Z
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 6613b07ac..31da1c48e 100644
--- a/main/r/adbcpostgresql/pkgdown.yml
+++ b/main/r/adbcpostgresql/pkgdown.yml
@@ -2,7 +2,7 @@ pandoc: 3.7.0.1
pkgdown: 2.1.3
pkgdown_sha: ~
articles: {}
-last_built: 2025-05-28T00:08Z
+last_built: 2025-05-28T07:13Z
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 34e5e90ad..7f4c371ab 100644
--- a/main/r/adbcsnowflake/pkgdown.yml
+++ b/main/r/adbcsnowflake/pkgdown.yml
@@ -2,7 +2,7 @@ pandoc: 3.7.0.1
pkgdown: 2.1.3
pkgdown_sha: ~
articles: {}
-last_built: 2025-05-28T00:08Z
+last_built: 2025-05-28T07:13Z
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 ce9e4f4f7..707c7c0d6 100644
--- a/main/r/adbcsqlite/pkgdown.yml
+++ b/main/r/adbcsqlite/pkgdown.yml
@@ -2,7 +2,7 @@ pandoc: 3.7.0.1
pkgdown: 2.1.3
pkgdown_sha: ~
articles: {}
-last_built: 2025-05-28T00:08Z
+last_built: 2025-05-28T07:13Z
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 ed1c808be..d0e730081 100644
--- a/main/searchindex.js
+++ b/main/searchindex.js
@@ -1 +1 @@
-Search.setIndex({"alltitles":{"ADBC API Standard":[[25,null]],"API
Reference":[[3,"api-reference"],[30,"api-reference"],[38,"api-reference"]],"And
then what is the \u201cADBC JDBC
driver\u201d?":[[21,"and-then-what-is-the-adbc-jdbc-driver"]],"Apache Arrow
ADBC":[[28,null]],"Arrow type to PostgreSQL type
mapping":[[17,"id5"]],"Authenticate with a username and
password":[[44,"authenticate-with-a-username-and-password"]],"Authentication":[[14,"authentication"],[18,"authentication"]],"Autoco
[...]
\ No newline at end of file
+Search.setIndex({"alltitles":{"ADBC API Standard":[[25,null]],"API
Reference":[[3,"api-reference"],[30,"api-reference"],[38,"api-reference"]],"And
then what is the \u201cADBC JDBC
driver\u201d?":[[21,"and-then-what-is-the-adbc-jdbc-driver"]],"Apache Arrow
ADBC":[[28,null]],"Arrow type to PostgreSQL type
mapping":[[17,"id5"]],"Authenticate with a username and
password":[[44,"authenticate-with-a-username-and-password"]],"Authentication":[[14,"authentication"],[18,"authentication"]],"Autoco
[...]
\ No newline at end of file