mirror of
https://github.com/frappe/erpnext.git
synced 2026-08-11 13:41:47 +00:00
ci(postgres): teach the guard about COALESCE(date, int) type mismatch New class found by the whole-repo audit (the Asset Depreciations report fix in this PR): IfNull/Coalesce of a typed column with a different-typed literal -- e.g. IfNull(date_col, 0) -> COALESCE(date, integer), which PostgreSQL rejects (DatatypeMismatch). Added to the Greptile config and POSTGRES_COMPATIBILITY.md (not statically checkable without column types).