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 fc4dd729c publish documentation
fc4dd729c is described below
commit fc4dd729c842ffa78961fe28074169c92ebac699
Author: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
AuthorDate: Mon Sep 1 05:21:23 2025 +0000
publish documentation
---
main/_sources/format/driver_manifests.rst.txt | 18 +++++++++---------
main/cpp/driver_example.html | 4 ++--
main/format/driver_manifests.html | 18 +++++++++---------
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 +-
13 files changed, 33 insertions(+), 33 deletions(-)
diff --git a/main/_sources/format/driver_manifests.rst.txt
b/main/_sources/format/driver_manifests.rst.txt
index 60d68eea5..107f0852f 100644
--- a/main/_sources/format/driver_manifests.rst.txt
+++ b/main/_sources/format/driver_manifests.rst.txt
@@ -442,20 +442,20 @@ the given order:
#. If additional search paths have been specified, those will be searched
- * The Python driver manager automatically adds ``$VIRTUAL_ENV/etc/adbc`` to
the search paths when running in a ``venv`` virtual environment
+ * The Python driver manager automatically adds
``$VIRTUAL_ENV/etc/adbc/drivers`` to the search paths when running in a
``venv`` virtual environment
-#. If the driver manager was built or installed with conda and the
``LOAD_FLAG_SEARCH_ENV`` load option is set, ``$CONDA_PREFIX/etc/adbc`` will be
searched
+#. If the driver manager was built or installed with conda and the
``LOAD_FLAG_SEARCH_ENV`` load option is set, ``$CONDA_PREFIX/etc/adbc/drivers``
will be searched
#. If the ``LOAD_FLAG_SEARCH_USER`` load option is set, then a user-level
configuration directory will be searched
- * On macOS, this will be ``~/Library/Application Support/ADBC``
+ * On macOS, this will be ``~/Library/Application Support/ADBC/Drivers``
* On Linux (and other Unix-like platforms), the ``XDG_CONFIG_HOME``
environment variable is checked first. If it is set, the driver manager
- will search ``$XDG_CONFIG_HOME/adbc``, otherwise it will search
``~/.config/adbc``
+ will search ``$XDG_CONFIG_HOME/adbc/drivers``, otherwise it will search
``~/.config/adbc/drivers``
#. If the ``LOAD_FLAG_SEARCH_SYSTEM`` load option is set, then a system-level
configuration directory will be searched
- * On macOS, this will be ``/Library/Application Support/ADBC`` if it exists
- * On Linux (and other Unix-like platforms), this will be ``/etc/adbc`` if
it exists
+ * On macOS, this will be ``/Library/Application Support/ADBC/Drivers`` if
it exists
+ * On Linux (and other Unix-like platforms), this will be
``/etc/adbc/drivers`` if it exists
Windows
^^^^^^^
@@ -469,9 +469,9 @@ would happen for ODBC drivers. The search for a manifest on
Windows would be the
#. If additional search paths have been specified, those will be searched
- * The Python driver manager automatically adds ``$VIRTUAL_ENV\etc\adbc`` to
the search paths when running in a ``venv`` virtual environment
+ * The Python driver manager automatically adds
``$VIRTUAL_ENV\etc\adbc\drivers`` to the search paths when running in a
``venv`` virtual environment
-#. If the driver manager was built or installed with conda and the
``LOAD_FLAG_SEARCH_ENV`` load option is set, ``$CONDA_PREFIX\etc\adbc`` will be
searched
+#. If the driver manager was built or installed with conda and the
``LOAD_FLAG_SEARCH_ENV`` load option is set, ``$CONDA_PREFIX\etc\adbc\drivers``
will be searched
#. If the ``LOAD_FLAG_SEARCH_USER`` load option is set, then a user-level
configuration is searched for
@@ -484,7 +484,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
``%LOCAL_APPDATA%\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/cpp/driver_example.html b/main/cpp/driver_example.html
index d589f8d4a..cc714bd64 100644
--- a/main/cpp/driver_example.html
+++ b/main/cpp/driver_example.html
@@ -816,8 +816,8 @@ For the purposes of our tutorial, this will be in current
directory.</p>
<span class="linenos">41</span> <span class="p">)</span>
<span class="linenos">42</span>
<span class="linenos">43</span> <span class="c1"># alternatively, it can
look for the manifest file in the user's config</span>
-<span class="linenos">44</span> <span class="c1"># directory
($HOME/.config/adbc/driver_example.toml) or the system's</span>
-<span class="linenos">45</span> <span class="c1"># config directory
(/etc/adbc/driver_example.toml)</span>
+<span class="linenos">44</span> <span class="c1"># directory
($HOME/.config/adbc/drivers/driver_example.toml) or the system's</span>
+<span class="linenos">45</span> <span class="c1"># config directory
(/etc/adbc/drivers/driver_example.toml)</span>
<span class="linenos">46</span> <span class="k">return</span> <span
class="n">dbapi</span><span class="o">.</span><span
class="n">connect</span><span class="p">(</span><span
class="n">driver</span><span class="o">=</span><span
class="s2">"driver_example"</span><span class="p">,</span> <span
class="n">db_kwargs</span><span class="o">=</span><span class="p">{</span><span
class="s2">"uri"</span><span class="p">:</span> <span
class="n">uri</span><span class="p">})</span>
</pre></div>
</div>
diff --git a/main/format/driver_manifests.html
b/main/format/driver_manifests.html
index e611cfb0f..241e933c6 100644
--- a/main/format/driver_manifests.html
+++ b/main/format/driver_manifests.html
@@ -844,21 +844,21 @@ the given order:</p>
<ol class="arabic simple">
<li><p>If additional search paths have been specified, those will be
searched</p>
<ul class="simple">
-<li><p>The Python driver manager automatically adds <code class="docutils
literal notranslate"><span class="pre">$VIRTUAL_ENV/etc/adbc</span></code> to
the search paths when running in a <code class="docutils literal
notranslate"><span class="pre">venv</span></code> virtual environment</p></li>
+<li><p>The Python driver manager automatically adds <code class="docutils
literal notranslate"><span
class="pre">$VIRTUAL_ENV/etc/adbc/drivers</span></code> to the search paths
when running in a <code class="docutils literal notranslate"><span
class="pre">venv</span></code> virtual environment</p></li>
</ul>
</li>
-<li><p>If the driver manager was built or installed with conda and the <code
class="docutils literal notranslate"><span
class="pre">LOAD_FLAG_SEARCH_ENV</span></code> load option is set, <code
class="docutils literal notranslate"><span
class="pre">$CONDA_PREFIX/etc/adbc</span></code> will be searched</p></li>
+<li><p>If the driver manager was built or installed with conda and the <code
class="docutils literal notranslate"><span
class="pre">LOAD_FLAG_SEARCH_ENV</span></code> load option is set, <code
class="docutils literal notranslate"><span
class="pre">$CONDA_PREFIX/etc/adbc/drivers</span></code> will be
searched</p></li>
<li><p>If the <code class="docutils literal notranslate"><span
class="pre">LOAD_FLAG_SEARCH_USER</span></code> load option is set, then a
user-level configuration directory will be searched</p>
<ul class="simple">
-<li><p>On macOS, this will be <code class="docutils literal notranslate"><span
class="pre">~/Library/Application</span> <span
class="pre">Support/ADBC</span></code></p></li>
+<li><p>On macOS, this will be <code class="docutils literal notranslate"><span
class="pre">~/Library/Application</span> <span
class="pre">Support/ADBC/Drivers</span></code></p></li>
<li><p>On Linux (and other Unix-like platforms), the <code class="docutils
literal notranslate"><span class="pre">XDG_CONFIG_HOME</span></code>
environment variable is checked first. If it is set, the driver manager
-will search <code class="docutils literal notranslate"><span
class="pre">$XDG_CONFIG_HOME/adbc</span></code>, otherwise it will search <code
class="docutils literal notranslate"><span
class="pre">~/.config/adbc</span></code></p></li>
+will search <code class="docutils literal notranslate"><span
class="pre">$XDG_CONFIG_HOME/adbc/drivers</span></code>, otherwise it will
search <code class="docutils literal notranslate"><span
class="pre">~/.config/adbc/drivers</span></code></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, then a
system-level configuration directory will be searched</p>
<ul class="simple">
-<li><p>On macOS, this will be <code class="docutils literal notranslate"><span
class="pre">/Library/Application</span> <span
class="pre">Support/ADBC</span></code> if it exists</p></li>
-<li><p>On Linux (and other Unix-like platforms), this will be <code
class="docutils literal notranslate"><span class="pre">/etc/adbc</span></code>
if it exists</p></li>
+<li><p>On macOS, this will be <code class="docutils literal notranslate"><span
class="pre">/Library/Application</span> <span
class="pre">Support/ADBC/Drivers</span></code> if it exists</p></li>
+<li><p>On Linux (and other Unix-like platforms), this will be <code
class="docutils literal notranslate"><span
class="pre">/etc/adbc/drivers</span></code> if it exists</p></li>
</ul>
</li>
</ol>
@@ -878,10 +878,10 @@ would happen for ODBC drivers. The search for a manifest
on Windows would be the
<ol class="arabic simple">
<li><p>If additional search paths have been specified, those will be
searched</p>
<ul class="simple">
-<li><p>The Python driver manager automatically adds <code class="docutils
literal notranslate"><span class="pre">$VIRTUAL_ENV\etc\adbc</span></code> to
the search paths when running in a <code class="docutils literal
notranslate"><span class="pre">venv</span></code> virtual environment</p></li>
+<li><p>The Python driver manager automatically adds <code class="docutils
literal notranslate"><span
class="pre">$VIRTUAL_ENV\etc\adbc\drivers</span></code> to the search paths
when running in a <code class="docutils literal notranslate"><span
class="pre">venv</span></code> virtual environment</p></li>
</ul>
</li>
-<li><p>If the driver manager was built or installed with conda and the <code
class="docutils literal notranslate"><span
class="pre">LOAD_FLAG_SEARCH_ENV</span></code> load option is set, <code
class="docutils literal notranslate"><span
class="pre">$CONDA_PREFIX\etc\adbc</span></code> will be searched</p></li>
+<li><p>If the driver manager was built or installed with conda and the <code
class="docutils literal notranslate"><span
class="pre">LOAD_FLAG_SEARCH_ENV</span></code> load option is set, <code
class="docutils literal notranslate"><span
class="pre">$CONDA_PREFIX\etc\adbc\drivers</span></code> will be
searched</p></li>
<li><p>If the <code class="docutils literal notranslate"><span
class="pre">LOAD_FLAG_SEARCH_USER</span></code> load option is set, then a
user-level configuration is searched for</p>
<ul class="simple">
<li><p>First, the registry is searched for the key <code class="docutils
literal notranslate"><span
class="pre">HKEY_CURRENT_USER\SOFTWARE\ADBC\Drivers\${name}</span></code>. If
it exists, then the following sub-keys
@@ -894,7 +894,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">%LOCAL_APPDATA%\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 fb8a10ed8..f91b65c71 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-09-01T05:08Z
+last_built: 2025-09-01T05:20Z
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 ff464d79f..9580e8501 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-09-01T05:08Z
+last_built: 2025-09-01T05:20Z
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 202f2e6e2..fdd4049ca 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
0x560c6141d040> </span>
+<span class="r-out co"><span class="r-pr">#></span> <adbc_connection at
0x559320321ca0> </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 0x560c60e4e300> </span>
+<span class="r-out co"><span class="r-pr">#></span> $
database:<adbc_database at 0x559320517bc0> </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 4</span>
<span class="r-out co"><span class="r-pr">#></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 ba3ddab59..a6be940ef 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
0x560c608e8200> </span>
+<span class="r-out co"><span class="r-pr">#></span> <adbc_database at
0x559320c47630> </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 4</span>
<span class="r-out co"><span class="r-pr">#></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 7931aab92..0470e8b14 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
0x560c60abcb00> </span>
+<span class="r-out co"><span class="r-pr">#></span> <adbc_statement at
0x559320509940> </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 0x560c6148ca30> </span>
+<span class="r-out co"><span class="r-pr">#></span> $
connection:<adbc_connection at 0x55931af8e340> </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 0x560c600cc730> </span>
+<span class="r-out co"><span class="r-pr">#></span> ..$
database:<adbc_database at 0x559320bcf440> </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 4</span>
<span class="r-out co"><span class="r-pr">#></span> .. .. ..$ load_flags
: int 15</span>
diff --git a/main/r/adbcdrivermanager/search.json
b/main/r/adbcdrivermanager/search.json
index d07559a03..489081905 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 d9001e8a6..472ec3cd4 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-09-01T05:08Z
+last_built: 2025-09-01T05:20Z
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 cee1e362d..4ff1aa648 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-09-01T05:08Z
+last_built: 2025-09-01T05:20Z
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 dd9cc1551..dce7e5c9b 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-09-01T05:08Z
+last_built: 2025-09-01T05:20Z
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 881558301..7dd239756 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-09-01T05:08Z
+last_built: 2025-09-01T05:20Z
urls:
reference: https://arrow.apache.org/adbc/current/r/adbcsqlite/reference
article: https://arrow.apache.org/adbc/current/r/adbcsqlite/articles