mirror of
https://github.com/frappe/erpnext.git
synced 2026-08-12 06:01:46 +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.