fix(site-finder): SQLAlchemy syntax error :weights::jsonb → CAST(:weights AS jsonb) #152
No reviewers
Labels
No labels
admin
analytics
auth
automation
bug
business
chore
ci
compliance
data
data-moat
docs
duplicate
dx
enhancement
Fable 5 ревью
feedback/max
generative
GG-форсайт
needs-discussion
needs-human
observability
pause-bots
performance
priority/p0
priority/p1
priority/p2
priority/p3
scope/backend
scope/db
scope/devops
scope/frontend
scope/qa
scrapers
security
site-finder
stage/1
stage/2
status/blocked
status/done
status/needs-analysis
status/needs-fix
status/qa
status/ready
status/review
status/wip
tech-debt
tradein
ux
week ревью 1
wontfix
вторичка
ИРД
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: lekss361/gendesign#152
Loading…
Add table
Reference in a new issue
No description provided.
Delete branch "fix/weight-profiles-sqlalchemy-cast-syntax"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Bug
Production POST /api/v1/admin/site-finder/weight-profiles → 500 SyntaxError.
```
syntax error at or near ":"
LINE 5: ($1, $2, :weights::jsonb, $3, $4)
^
parameters: {user_id, profile_name, is_default, description}
↑ 'weights' missing
```
Root cause
SQLAlchemy text() parser двусмысленно с `:weights::jsonb`:
Parser НЕ binds `:weights` когда followed by `::`. Psycopg видит literal `:weights` → syntax error.
Fix
`:weights::jsonb` → `CAST(:weights AS jsonb)` (2 мест):
CAST() syntax unambiguous, parser correctly binds.
Affected
Impact
Feature #114 Custom POI weights не работает в production ДО этого fix.
Refs: user report 2026-05-15
Final review (SHA
6164826, CI ✅):param::cast→CAST(:param AS cast)стандартный workaroundapprove merge