fix(patch): drop dead procedures first before other changes

(cherry picked from commit 61d24ba55f)
This commit is contained in:
ruthra kumar
2026-05-19 16:12:25 +05:30
committed by Mergify
parent 1983204112
commit 67d67616ca

View File

@@ -2,11 +2,11 @@ import frappe
def execute():
frappe.db.sql("drop function if exists ar_genkey")
frappe.db.sql("drop procedure if exists ar_init_tmp_table")
frappe.db.sql("drop procedure if exists ar_allocate_to_tmp_table")
if frappe.db.get_single_value("Accounts Settings", "receivable_payable_fetch_method") == "Raw SQL":
frappe.db.set_single_value(
"Accounts Settings", "receivable_payable_fetch_method", "UnBuffered Cursor"
)
frappe.db.sql("drop function if exists ar_genkey")
frappe.db.sql("drop procedure if exists ar_init_tmp_table")
frappe.db.sql("drop procedure if exists ar_allocate_to_tmp_table")