Release v4928.1.4.2 stable

This commit is contained in:
2026-06-09 22:55:58 +01:00
commit 6445044ac6
280 changed files with 41775 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
from pathlib import Path
def test_v4915_reconstruction_amount_update_casts_numeric_parameter():
source = Path("app/reconciliation_service.py").read_text()
assert "WHEN CAST(:amount AS NUMERIC) IS NOT NULL" in source
assert "THEN CAST(:amount AS NUMERIC)" in source
assert "WHEN :amount IS NOT NULL" not in source