mirror of
https://github.com/frappe/erpnext.git
synced 2026-08-11 05:31:48 +00:00
The [^)]* span stopped at the first inner ')', so CAST(ABS(col) AS CHAR) slipped through. Use a non-greedy .+? with re.S; still zero production false positives (verified). Addresses review feedback.