fix: replace all :: type casts with CAST() in SQLAlchemy text() calls

SQLAlchemy's text() interprets :name::type as two named parameters.
Fixes syntax errors in link discovery, signal history, and SNMP profile
CRUD that caused 500 errors at runtime.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Jason Staack
2026-03-21 23:59:20 -05:00
parent 2fff669cc3
commit e152c741e5
3 changed files with 6 additions and 6 deletions

View File

@@ -163,7 +163,7 @@ async def create_profile(
category, profile_data, is_system)
VALUES
(:tenant_id, :name, :description, :sys_object_id, :vendor,
:category, :profile_data::jsonb, FALSE)
:category, CAST(:profile_data AS jsonb), FALSE)
RETURNING id, tenant_id, name, description, sys_object_id, vendor,
category, is_system, created_at, updated_at
"""),
@@ -234,7 +234,7 @@ async def update_profile(
for field, value in fields.items():
if field == "profile_data" and value is not None:
set_clauses.append(f"{field} = :{field}::jsonb")
set_clauses.append(f"{field} = CAST(:{field} AS jsonb)")
updates[field] = json.dumps(value)
else:
set_clauses.append(f"{field} = :{field}")