Geometry: Point: Try to create index at each update.

master
Pierre-Antoine 2026-09-04 11:30:30 +02:00
parent defcb3af84
commit 92fb653676
1 changed files with 5 additions and 6 deletions

View File

@ -95,10 +95,9 @@ class PointXYZ(Point):
"ADD COLUMN deleted BOOLEAN NOT NULL DEFAULT FALSE"
)
if major == "0" and minor == "2":
if int(release) < 5:
# Try to create index at each update
execute(
"CREATE INDEX idx_point " +
"CREATE INDEX IF NOT EXISTS idx_point " +
"ON geometry_pointXYZ(profile, scenario);"
)