Skip to content

Commit

Permalink
Fix RTree update6 update table name
Browse files Browse the repository at this point in the history
  • Loading branch information
bosborn authored and jyutzler committed Jan 29, 2024
1 parent 6a8c5fc commit 2597ead
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spec/core/annexes/extension_spatialindex.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ CREATE TRIGGER rtree_<t>_<c>_update6 AFTER UPDATE OF <c> ON <t>
(NEW.<c> NOTNULL AND NOT ST_IsEmpty(NEW.<c>)) AND
(OLD.<c> NOTNULL AND NOT ST_IsEmpty(OLD.<c>))
BEGIN
UPDATE <t> SET
UPDATE rtree_<t>_<c> SET
minx = ST_MinX(NEW.<c>),
maxx = ST_MaxX(NEW.<c>),
miny = ST_MinY(NEW.<c>),
Expand Down

0 comments on commit 2597ead

Please sign in to comment.