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/sedona-db.git
The following commit(s) were added to refs/heads/asf-site by this push:
new ae9ccc83 Deployed e51f5a5 to latest-snapshot with MkDocs 1.6.1 and
mike 2.1.3
ae9ccc83 is described below
commit ae9ccc83f74e5e1398a1f9e5fc8e84a81ecab37a
Author: GitHub Actions <[email protected]>
AuthorDate: Tue Jan 27 19:52:33 2026 +0000
Deployed e51f5a5 to latest-snapshot with MkDocs 1.6.1 and mike 2.1.3
---
latest-snapshot/crs-examples.ipynb | 2 +-
latest-snapshot/crs-examples/index.html | 4 ++--
latest-snapshot/overture-examples.ipynb | 4 ++--
latest-snapshot/overture-examples/index.html | 6 +++---
latest-snapshot/programming-guide.ipynb | 2 +-
latest-snapshot/programming-guide/index.html | 4 ++--
.../__pycache__/_matplotlib_defaults.cpython-314.pyc | Bin 431 -> 431 bytes
.../__pycache__/_render_meta.cpython-314.pyc | Bin 8436 -> 8436 bytes
latest-snapshot/reference/functions/index.html | 2 +-
.../reference/functions/st_analyze_agg/index.html | 2 +-
.../reference/functions/st_area/index.html | 2 +-
.../reference/functions/st_asbinary/index.html | 2 +-
.../reference/functions/st_buffer/index.html | 2 +-
.../reference/functions/st_intersection/index.html | 2 +-
latest-snapshot/reference/python/index.html | 2 +-
latest-snapshot/reference/sql/index.html | 6 +++---
latest-snapshot/search/search_index.json | 2 +-
17 files changed, 22 insertions(+), 22 deletions(-)
diff --git a/latest-snapshot/crs-examples.ipynb
b/latest-snapshot/crs-examples.ipynb
index c48751c1..c63877ff 100644
--- a/latest-snapshot/crs-examples.ipynb
+++ b/latest-snapshot/crs-examples.ipynb
@@ -110,7 +110,7 @@
"outputs": [],
"source": [
"cities = sd.sql(\"\"\"\n",
- "SELECT city, ST_SetSRID(ST_GeomFromText(wkt), 3857) AS geometry FROM
(VALUES\n",
+ "SELECT city, ST_GeomFromText(wkt, 3857) AS geometry FROM (VALUES\n",
" ('New York', 'POINT(-8238310.24 4969803.34)'),\n",
" ('Los Angeles', 'POINT(-13153204.78 4037636.04)'),\n",
" ('Chicago', 'POINT(-9757148.04 5138517.44)'))\n",
diff --git a/latest-snapshot/crs-examples/index.html
b/latest-snapshot/crs-examples/index.html
index 00d7ecb2..85e511cf 100644
--- a/latest-snapshot/crs-examples/index.html
+++ b/latest-snapshot/crs-examples/index.html
@@ -1515,7 +1515,7 @@
<p><code>ST_SetSRID(geometry, srid)</code>: This function assigns an SRID to a
geometry. It does not change the underlying coordinate values. You should only
use this when your data has a CRS that SedonaDB was unable to infer.</p>
<p><code>ST_Transform(geometry, target_srid)</code>: This function transforms
the geometry from its current CRS to a new one. It re-projects the coordinate
values themselves.</p>
<div class="highlight"><pre><span></span><code><span class="n">cities</span>
<span class="o">=</span> <span class="n">sd</span><span class="o">.</span><span
class="n">sql</span><span class="p">(</span><span class="s2">"""</span>
-<span class="s2">SELECT city, ST_SetSRID(ST_GeomFromText(wkt), 3857) AS
geometry FROM (VALUES</span>
+<span class="s2">SELECT city, ST_GeomFromText(wkt, 3857) AS geometry FROM
(VALUES</span>
<span class="s2"> ('New York', 'POINT(-8238310.24 4969803.34)'),</span>
<span class="s2"> ('Los Angeles', 'POINT(-13153204.78 4037636.04)'),</span>
<span class="s2"> ('Chicago', 'POINT(-9757148.04 5138517.44)'))</span>
@@ -1742,7 +1742,7 @@
<span class="md-icon" title="Last update">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21
13.1c-.1 0-.3.1-.4.2l-1 1 2.1 2.1 1-1c.2-.2.2-.6
0-.8l-1.3-1.3c-.1-.1-.2-.2-.4-.2m-1.9 1.8-6.1 6V23h2.1l6.1-6.1zM12.5 7v5.2l4
2.4-1 1L11 13V7zM11 21.9c-5.1-.5-9-4.8-9-9.9C2 6.5 6.5 2 12 2c5.3 0 9.6 4.1 10
9.3-.3-.1-.6-.2-1-.2s-.7.1-1 .2C19.6 7.2 16.2 4 12 4c-4.4 0-8 3.6-8 8 0 4.1 3.1
7.5 7.1 7.9l-.1.2z"></path></svg>
</span>
- <span class="git-revision-date-localized-plugin
git-revision-date-localized-plugin-datetime" title="December 1, 2025 15:10:11
UTC">December 1, 2025 15:10:11</span>
+ <span class="git-revision-date-localized-plugin
git-revision-date-localized-plugin-datetime" title="January 27, 2026 19:47:58
UTC">January 27, 2026 19:47:58</span>
</span>
diff --git a/latest-snapshot/overture-examples.ipynb
b/latest-snapshot/overture-examples.ipynb
index fa716942..f542a6d0 100644
--- a/latest-snapshot/overture-examples.ipynb
+++ b/latest-snapshot/overture-examples.ipynb
@@ -302,7 +302,7 @@
" AND height > 20\n",
" AND ST_Intersects(\n",
" geometry,\n",
- " ST_SetSRID(ST_GeomFromText('{nyc_bbox_wkt}'), 4326)\n",
+ " ST_GeomFromText('{nyc_bbox_wkt}', 4326)\n",
" )\n",
"LIMIT 5;\n",
"\"\"\").show()"
@@ -459,7 +459,7 @@
"WHERE\n",
" ST_Intersects(\n",
" geometry,\n",
- " ST_SetSRID(ST_GeomFromText('{nova_scotia_bbox_wkt}'), 4326)\n",
+ " ST_GeomFromText('{nova_scotia_bbox_wkt}', 4326)\n",
" )\n",
"\"\"\").to_memtable()"
]
diff --git a/latest-snapshot/overture-examples/index.html
b/latest-snapshot/overture-examples/index.html
index 851080c5..9cdcf15e 100644
--- a/latest-snapshot/overture-examples/index.html
+++ b/latest-snapshot/overture-examples/index.html
@@ -1614,7 +1614,7 @@
<span class="s2"> AND height > 20</span>
<span class="s2"> AND ST_Intersects(</span>
<span class="s2"> geometry,</span>
-<span class="s2"> ST_SetSRID(ST_GeomFromText('</span><span
class="si">{</span><span class="n">nyc_bbox_wkt</span><span
class="si">}</span><span class="s2">'), 4326)</span>
+<span class="s2"> ST_GeomFromText('</span><span
class="si">{</span><span class="n">nyc_bbox_wkt</span><span
class="si">}</span><span class="s2">', 4326)</span>
<span class="s2"> )</span>
<span class="s2">LIMIT 5;</span>
<span class="s2">"""</span><span class="p">)</span><span
class="o">.</span><span class="n">show</span><span class="p">()</span>
@@ -1714,7 +1714,7 @@
<span class="s2">WHERE</span>
<span class="s2"> ST_Intersects(</span>
<span class="s2"> geometry,</span>
-<span class="s2"> ST_SetSRID(ST_GeomFromText('</span><span
class="si">{</span><span class="n">nova_scotia_bbox_wkt</span><span
class="si">}</span><span class="s2">'), 4326)</span>
+<span class="s2"> ST_GeomFromText('</span><span
class="si">{</span><span class="n">nova_scotia_bbox_wkt</span><span
class="si">}</span><span class="s2">', 4326)</span>
<span class="s2"> )</span>
<span class="s2">"""</span><span class="p">)</span><span
class="o">.</span><span class="n">to_memtable</span><span class="p">()</span>
</code></pre></div>
@@ -1771,7 +1771,7 @@ Wall time: 1.42 ms
<span class="md-icon" title="Last update">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21
13.1c-.1 0-.3.1-.4.2l-1 1 2.1 2.1 1-1c.2-.2.2-.6
0-.8l-1.3-1.3c-.1-.1-.2-.2-.4-.2m-1.9 1.8-6.1 6V23h2.1l6.1-6.1zM12.5 7v5.2l4
2.4-1 1L11 13V7zM11 21.9c-5.1-.5-9-4.8-9-9.9C2 6.5 6.5 2 12 2c5.3 0 9.6 4.1 10
9.3-.3-.1-.6-.2-1-.2s-.7.1-1 .2C19.6 7.2 16.2 4 12 4c-4.4 0-8 3.6-8 8 0 4.1 3.1
7.5 7.1 7.9l-.1.2z"></path></svg>
</span>
- <span class="git-revision-date-localized-plugin
git-revision-date-localized-plugin-datetime" title="November 25, 2025 02:13:58
UTC">November 25, 2025 02:13:58</span>
+ <span class="git-revision-date-localized-plugin
git-revision-date-localized-plugin-datetime" title="January 27, 2026 19:47:58
UTC">January 27, 2026 19:47:58</span>
</span>
diff --git a/latest-snapshot/programming-guide.ipynb
b/latest-snapshot/programming-guide.ipynb
index 6a3459c4..fba2f723 100644
--- a/latest-snapshot/programming-guide.ipynb
+++ b/latest-snapshot/programming-guide.ipynb
@@ -244,7 +244,7 @@
"ns = sd.sql(f\"\"\"\n",
"SELECT country, region, geometry\n",
"FROM division_area\n",
- "WHERE ST_Intersects(geometry,
ST_SetSRID(ST_GeomFromText('{nova_scotia_bbox_wkt}'), 4326))\n",
+ "WHERE ST_Intersects(geometry, ST_GeomFromText('{nova_scotia_bbox_wkt}',
4326))\n",
"\"\"\")\n",
"\n",
"ns.show(3)"
diff --git a/latest-snapshot/programming-guide/index.html
b/latest-snapshot/programming-guide/index.html
index d035a81e..737fea5f 100644
--- a/latest-snapshot/programming-guide/index.html
+++ b/latest-snapshot/programming-guide/index.html
@@ -1618,7 +1618,7 @@
<span class="n">ns</span> <span class="o">=</span> <span
class="n">sd</span><span class="o">.</span><span class="n">sql</span><span
class="p">(</span><span class="sa">f</span><span class="s2">"""</span>
<span class="s2">SELECT country, region, geometry</span>
<span class="s2">FROM division_area</span>
-<span class="s2">WHERE ST_Intersects(geometry,
ST_SetSRID(ST_GeomFromText('</span><span class="si">{</span><span
class="n">nova_scotia_bbox_wkt</span><span class="si">}</span><span
class="s2">'), 4326))</span>
+<span class="s2">WHERE ST_Intersects(geometry, ST_GeomFromText('</span><span
class="si">{</span><span class="n">nova_scotia_bbox_wkt</span><span
class="si">}</span><span class="s2">', 4326))</span>
<span class="s2">"""</span><span class="p">)</span>
<span class="n">ns</span><span class="o">.</span><span
class="n">show</span><span class="p">(</span><span class="mi">3</span><span
class="p">)</span>
@@ -1725,7 +1725,7 @@
<span class="md-icon" title="Last update">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21
13.1c-.1 0-.3.1-.4.2l-1 1 2.1 2.1 1-1c.2-.2.2-.6
0-.8l-1.3-1.3c-.1-.1-.2-.2-.4-.2m-1.9 1.8-6.1 6V23h2.1l6.1-6.1zM12.5 7v5.2l4
2.4-1 1L11 13V7zM11 21.9c-5.1-.5-9-4.8-9-9.9C2 6.5 6.5 2 12 2c5.3 0 9.6 4.1 10
9.3-.3-.1-.6-.2-1-.2s-.7.1-1 .2C19.6 7.2 16.2 4 12 4c-4.4 0-8 3.6-8 8 0 4.1 3.1
7.5 7.1 7.9l-.1.2z"></path></svg>
</span>
- <span class="git-revision-date-localized-plugin
git-revision-date-localized-plugin-datetime" title="November 25, 2025 02:13:58
UTC">November 25, 2025 02:13:58</span>
+ <span class="git-revision-date-localized-plugin
git-revision-date-localized-plugin-datetime" title="January 27, 2026 19:47:58
UTC">January 27, 2026 19:47:58</span>
</span>
diff --git
a/latest-snapshot/reference/functions/__pycache__/_matplotlib_defaults.cpython-314.pyc
b/latest-snapshot/reference/functions/__pycache__/_matplotlib_defaults.cpython-314.pyc
index 72776813..468e6859 100644
Binary files
a/latest-snapshot/reference/functions/__pycache__/_matplotlib_defaults.cpython-314.pyc
and
b/latest-snapshot/reference/functions/__pycache__/_matplotlib_defaults.cpython-314.pyc
differ
diff --git
a/latest-snapshot/reference/functions/__pycache__/_render_meta.cpython-314.pyc
b/latest-snapshot/reference/functions/__pycache__/_render_meta.cpython-314.pyc
index a5eab2d3..8ac24332 100644
Binary files
a/latest-snapshot/reference/functions/__pycache__/_render_meta.cpython-314.pyc
and
b/latest-snapshot/reference/functions/__pycache__/_render_meta.cpython-314.pyc
differ
diff --git a/latest-snapshot/reference/functions/index.html
b/latest-snapshot/reference/functions/index.html
index a1bca4cb..d612d8f1 100644
--- a/latest-snapshot/reference/functions/index.html
+++ b/latest-snapshot/reference/functions/index.html
@@ -1498,7 +1498,7 @@ input geometry is less than or equal to a specified
distance.</p>
<span class="md-icon" title="Last update">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21
13.1c-.1 0-.3.1-.4.2l-1 1 2.1 2.1 1-1c.2-.2.2-.6
0-.8l-1.3-1.3c-.1-.1-.2-.2-.4-.2m-1.9 1.8-6.1 6V23h2.1l6.1-6.1zM12.5 7v5.2l4
2.4-1 1L11 13V7zM11 21.9c-5.1-.5-9-4.8-9-9.9C2 6.5 6.5 2 12 2c5.3 0 9.6 4.1 10
9.3-.3-.1-.6-.2-1-.2s-.7.1-1 .2C19.6 7.2 16.2 4 12 4c-4.4 0-8 3.6-8 8 0 4.1 3.1
7.5 7.1 7.9l-.1.2z"></path></svg>
</span>
- <span class="git-revision-date-localized-plugin
git-revision-date-localized-plugin-datetime" title="January 27, 2026 02:34:28
UTC">January 27, 2026 02:34:28</span>
+ <span class="git-revision-date-localized-plugin
git-revision-date-localized-plugin-datetime" title="January 27, 2026 19:52:30
UTC">January 27, 2026 19:52:30</span>
</span>
diff --git a/latest-snapshot/reference/functions/st_analyze_agg/index.html
b/latest-snapshot/reference/functions/st_analyze_agg/index.html
index eb1fe874..dd50068c 100644
--- a/latest-snapshot/reference/functions/st_analyze_agg/index.html
+++ b/latest-snapshot/reference/functions/st_analyze_agg/index.html
@@ -1410,7 +1410,7 @@ geometries. The fields of its struct return type are:</p>
<span class="md-icon" title="Last update">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21
13.1c-.1 0-.3.1-.4.2l-1 1 2.1 2.1 1-1c.2-.2.2-.6
0-.8l-1.3-1.3c-.1-.1-.2-.2-.4-.2m-1.9 1.8-6.1 6V23h2.1l6.1-6.1zM12.5 7v5.2l4
2.4-1 1L11 13V7zM11 21.9c-5.1-.5-9-4.8-9-9.9C2 6.5 6.5 2 12 2c5.3 0 9.6 4.1 10
9.3-.3-.1-.6-.2-1-.2s-.7.1-1 .2C19.6 7.2 16.2 4 12 4c-4.4 0-8 3.6-8 8 0 4.1 3.1
7.5 7.1 7.9l-.1.2z"></path></svg>
</span>
- <span class="git-revision-date-localized-plugin
git-revision-date-localized-plugin-datetime" title="January 27, 2026 02:34:28
UTC">January 27, 2026 02:34:28</span>
+ <span class="git-revision-date-localized-plugin
git-revision-date-localized-plugin-datetime" title="January 27, 2026 19:52:30
UTC">January 27, 2026 19:52:30</span>
</span>
diff --git a/latest-snapshot/reference/functions/st_area/index.html
b/latest-snapshot/reference/functions/st_area/index.html
index 2be22516..bab947c7 100644
--- a/latest-snapshot/reference/functions/st_area/index.html
+++ b/latest-snapshot/reference/functions/st_area/index.html
@@ -1394,7 +1394,7 @@
<span class="md-icon" title="Last update">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21
13.1c-.1 0-.3.1-.4.2l-1 1 2.1 2.1 1-1c.2-.2.2-.6
0-.8l-1.3-1.3c-.1-.1-.2-.2-.4-.2m-1.9 1.8-6.1 6V23h2.1l6.1-6.1zM12.5 7v5.2l4
2.4-1 1L11 13V7zM11 21.9c-5.1-.5-9-4.8-9-9.9C2 6.5 6.5 2 12 2c5.3 0 9.6 4.1 10
9.3-.3-.1-.6-.2-1-.2s-.7.1-1 .2C19.6 7.2 16.2 4 12 4c-4.4 0-8 3.6-8 8 0 4.1 3.1
7.5 7.1 7.9l-.1.2z"></path></svg>
</span>
- <span class="git-revision-date-localized-plugin
git-revision-date-localized-plugin-datetime" title="January 27, 2026 02:34:28
UTC">January 27, 2026 02:34:28</span>
+ <span class="git-revision-date-localized-plugin
git-revision-date-localized-plugin-datetime" title="January 27, 2026 19:52:30
UTC">January 27, 2026 19:52:30</span>
</span>
diff --git a/latest-snapshot/reference/functions/st_asbinary/index.html
b/latest-snapshot/reference/functions/st_asbinary/index.html
index 934cfcc6..b34957b1 100644
--- a/latest-snapshot/reference/functions/st_asbinary/index.html
+++ b/latest-snapshot/reference/functions/st_asbinary/index.html
@@ -1395,7 +1395,7 @@ geometry or geography. This function also has the alias
ST_AsWKB.</p>
<span class="md-icon" title="Last update">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21
13.1c-.1 0-.3.1-.4.2l-1 1 2.1 2.1 1-1c.2-.2.2-.6
0-.8l-1.3-1.3c-.1-.1-.2-.2-.4-.2m-1.9 1.8-6.1 6V23h2.1l6.1-6.1zM12.5 7v5.2l4
2.4-1 1L11 13V7zM11 21.9c-5.1-.5-9-4.8-9-9.9C2 6.5 6.5 2 12 2c5.3 0 9.6 4.1 10
9.3-.3-.1-.6-.2-1-.2s-.7.1-1 .2C19.6 7.2 16.2 4 12 4c-4.4 0-8 3.6-8 8 0 4.1 3.1
7.5 7.1 7.9l-.1.2z"></path></svg>
</span>
- <span class="git-revision-date-localized-plugin
git-revision-date-localized-plugin-datetime" title="January 27, 2026 02:34:28
UTC">January 27, 2026 02:34:28</span>
+ <span class="git-revision-date-localized-plugin
git-revision-date-localized-plugin-datetime" title="January 27, 2026 19:52:30
UTC">January 27, 2026 19:52:30</span>
</span>
diff --git a/latest-snapshot/reference/functions/st_buffer/index.html
b/latest-snapshot/reference/functions/st_buffer/index.html
index 84abc8af..319577d3 100644
--- a/latest-snapshot/reference/functions/st_buffer/index.html
+++ b/latest-snapshot/reference/functions/st_buffer/index.html
@@ -1408,7 +1408,7 @@ input geometry is less than or equal to a specified
distance.</p>
<span class="md-icon" title="Last update">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21
13.1c-.1 0-.3.1-.4.2l-1 1 2.1 2.1 1-1c.2-.2.2-.6
0-.8l-1.3-1.3c-.1-.1-.2-.2-.4-.2m-1.9 1.8-6.1 6V23h2.1l6.1-6.1zM12.5 7v5.2l4
2.4-1 1L11 13V7zM11 21.9c-5.1-.5-9-4.8-9-9.9C2 6.5 6.5 2 12 2c5.3 0 9.6 4.1 10
9.3-.3-.1-.6-.2-1-.2s-.7.1-1 .2C19.6 7.2 16.2 4 12 4c-4.4 0-8 3.6-8 8 0 4.1 3.1
7.5 7.1 7.9l-.1.2z"></path></svg>
</span>
- <span class="git-revision-date-localized-plugin
git-revision-date-localized-plugin-datetime" title="January 27, 2026 02:34:28
UTC">January 27, 2026 02:34:28</span>
+ <span class="git-revision-date-localized-plugin
git-revision-date-localized-plugin-datetime" title="January 27, 2026 19:52:30
UTC">January 27, 2026 19:52:30</span>
</span>
diff --git a/latest-snapshot/reference/functions/st_intersection/index.html
b/latest-snapshot/reference/functions/st_intersection/index.html
index 7456177e..d4266e1c 100644
--- a/latest-snapshot/reference/functions/st_intersection/index.html
+++ b/latest-snapshot/reference/functions/st_intersection/index.html
@@ -1390,7 +1390,7 @@
<span class="md-icon" title="Last update">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21
13.1c-.1 0-.3.1-.4.2l-1 1 2.1 2.1 1-1c.2-.2.2-.6
0-.8l-1.3-1.3c-.1-.1-.2-.2-.4-.2m-1.9 1.8-6.1 6V23h2.1l6.1-6.1zM12.5 7v5.2l4
2.4-1 1L11 13V7zM11 21.9c-5.1-.5-9-4.8-9-9.9C2 6.5 6.5 2 12 2c5.3 0 9.6 4.1 10
9.3-.3-.1-.6-.2-1-.2s-.7.1-1 .2C19.6 7.2 16.2 4 12 4c-4.4 0-8 3.6-8 8 0 4.1 3.1
7.5 7.1 7.9l-.1.2z"></path></svg>
</span>
- <span class="git-revision-date-localized-plugin
git-revision-date-localized-plugin-datetime" title="January 27, 2026 02:34:28
UTC">January 27, 2026 02:34:28</span>
+ <span class="git-revision-date-localized-plugin
git-revision-date-localized-plugin-datetime" title="January 27, 2026 19:52:30
UTC">January 27, 2026 19:52:30</span>
</span>
diff --git a/latest-snapshot/reference/python/index.html
b/latest-snapshot/reference/python/index.html
index d9243a78..c2956bba 100644
--- a/latest-snapshot/reference/python/index.html
+++ b/latest-snapshot/reference/python/index.html
@@ -5010,7 +5010,7 @@ the name of the provided function.</p>
<span class="err">│</span> <span class="mi">0</span> <span
class="err">│</span>
<span class="err">└────────┘</span>
-<span class="o">>>></span> <span class="n">sd</span><span
class="o">.</span><span class="n">sql</span><span class="p">(</span><span
class="s2">"SELECT ST_SRID(shapely_udf(ST_SetSRID(ST_Point(0, 0), 3857), 2.0))
as col"</span><span class="p">)</span><span class="o">.</span><span
class="n">show</span><span class="p">()</span>
+<span class="o">>>></span> <span class="n">sd</span><span
class="o">.</span><span class="n">sql</span><span class="p">(</span><span
class="s2">"SELECT ST_SRID(shapely_udf(ST_Point(0, 0, 3857), 2.0)) as
col"</span><span class="p">)</span><span class="o">.</span><span
class="n">show</span><span class="p">()</span>
<span class="err">┌────────┐</span>
<span class="err">│</span> <span class="n">col</span> <span
class="err">│</span>
<span class="err">│</span> <span class="n">uint32</span> <span
class="err">│</span>
diff --git a/latest-snapshot/reference/sql/index.html
b/latest-snapshot/reference/sql/index.html
index e3aa7f0e..708ca00f 100644
--- a/latest-snapshot/reference/sql/index.html
+++ b/latest-snapshot/reference/sql/index.html
@@ -4313,7 +4313,7 @@ ST_MakeValid (A: Geometry, keepCollapsed: Boolean)
<li><strong>srid</strong>: EPSG code to set (e.g., 4326).</li>
</ul>
<h4 id="sql-example_38">SQL Example<a class="headerlink"
href="#sql-example_38" title="Permanent link">¶</a></h4>
-<div class="highlight"><pre><span></span><code><span
class="k">SELECT</span><span class="w"> </span><span
class="n">ST_SetSRID</span><span class="p">(</span><span
class="n">ST_GeomFromWKT</span><span class="p">(</span><span class="s1">'POINT
(-64.363049 45.091501)'</span><span class="p">),</span><span class="w">
</span><span class="mi">4326</span><span class="p">);</span>
+<div class="highlight"><pre><span></span><code><span
class="k">SELECT</span><span class="w"> </span><span
class="n">ST_GeomFromWKT</span><span class="p">(</span><span class="s1">'POINT
(-64.363049 45.091501)'</span><span class="p">,</span><span class="w">
</span><span class="mi">4326</span><span class="p">);</span>
</code></pre></div>
<h2 id="st_srid">ST_SRID<a class="headerlink" href="#st_srid" title="Permanent
link">¶</a></h2>
<h4 id="description_39">Description<a class="headerlink"
href="#description_39" title="Permanent link">¶</a></h4>
@@ -4382,7 +4382,7 @@ ST_MakeValid (A: Geometry, keepCollapsed: Boolean)
</ul>
<h4 id="sql-example_42">SQL Example<a class="headerlink"
href="#sql-example_42" title="Permanent link">¶</a></h4>
<div class="highlight"><pre><span></span><code><span class="c1">-- Transform a
WGS84 polygon to UTM zone 49N</span>
-<span class="k">SELECT</span><span class="w"> </span><span
class="n">ST_Transform</span><span class="p">(</span><span
class="n">ST_SetSRID</span><span class="p">(</span><span
class="n">ST_GeomFromWkt</span><span class="p">(</span><span
class="s1">'POLYGON((170 50,170 72,-130 72,-130 50,170 50))'</span><span
class="p">),</span><span class="w"> </span><span class="mi">4326</span><span
class="p">),</span><span class="w"> </span><span
class="s1">'EPSG:32649'</span><span class="p">);</span>
+<span class="k">SELECT</span><span class="w"> </span><span
class="n">ST_Transform</span><span class="p">(</span><span
class="n">ST_GeomFromWkt</span><span class="p">(</span><span
class="s1">'POLYGON((170 50,170 72,-130 72,-130 50,170 50))'</span><span
class="p">,</span><span class="w"> </span><span class="mi">4326</span><span
class="p">),</span><span class="w"> </span><span
class="s1">'EPSG:32649'</span><span class="p">);</span>
</code></pre></div>
<h2 id="st_translate">ST_Translate<a class="headerlink" href="#st_translate"
title="Permanent link">¶</a></h2>
<p>Returns the input geometry with its X, Y and Z coordinates (if present in
the geometry) translated by deltaX, deltaY and deltaZ (if specified)</p>
@@ -4599,7 +4599,7 @@ ST_MakeValid (A: Geometry, keepCollapsed: Boolean)
<span class="md-icon" title="Last update">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M21
13.1c-.1 0-.3.1-.4.2l-1 1 2.1 2.1 1-1c.2-.2.2-.6
0-.8l-1.3-1.3c-.1-.1-.2-.2-.4-.2m-1.9 1.8-6.1 6V23h2.1l6.1-6.1zM12.5 7v5.2l4
2.4-1 1L11 13V7zM11 21.9c-5.1-.5-9-4.8-9-9.9C2 6.5 6.5 2 12 2c5.3 0 9.6 4.1 10
9.3-.3-.1-.6-.2-1-.2s-.7.1-1 .2C19.6 7.2 16.2 4 12 4c-4.4 0-8 3.6-8 8 0 4.1 3.1
7.5 7.1 7.9l-.1.2z"></path></svg>
</span>
- <span class="git-revision-date-localized-plugin
git-revision-date-localized-plugin-datetime" title="December 2, 2025 22:47:18
UTC">December 2, 2025 22:47:18</span>
+ <span class="git-revision-date-localized-plugin
git-revision-date-localized-plugin-datetime" title="January 27, 2026 19:47:58
UTC">January 27, 2026 19:47:58</span>
</span>
diff --git a/latest-snapshot/search/search_index.json
b/latest-snapshot/search/search_index.json
index 6fffc702..cd6a53e9 100644
--- a/latest-snapshot/search/search_index.json
+++ b/latest-snapshot/search/search_index.json
@@ -1 +1 @@
-{"config":{"lang":["en"],"separator":"[\\s\\-]+","pipeline":["stopWordFilter"],"fields":{"title":{"boost":1000.0},"text":{"boost":1.0},"tags":{"boost":1000000.0}}},"docs":[{"location":"","title":"Introducing
SedonaDB","text":"<p>SedonaDB is an open-source single-node analytical
database engine with geospatial as a first-class citizen. It aims to deliver
the fastest spatial analytics query speed and the most comprehensive function
coverage available.</p> <p>SedonaDB is perfect for process [...]
\ No newline at end of file
+{"config":{"lang":["en"],"separator":"[\\s\\-]+","pipeline":["stopWordFilter"],"fields":{"title":{"boost":1000.0},"text":{"boost":1.0},"tags":{"boost":1000000.0}}},"docs":[{"location":"","title":"Introducing
SedonaDB","text":"<p>SedonaDB is an open-source single-node analytical
database engine with geospatial as a first-class citizen. It aims to deliver
the fastest spatial analytics query speed and the most comprehensive function
coverage available.</p> <p>SedonaDB is perfect for process [...]
\ No newline at end of file