You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To support _draft, developer/data engineers need to handle repeated execution of scripts placed in _draft directory. For example, dropping the procedure before creating them.
DROP PROCEDURE IF EXISTS dbo.usp_get_employees;
GO
CREATE PROCEDURE dbo.usp_get_employeesASSELECT*FROMdbo.employees;
GO
Scripts _draft directory was skipped when db runs latest version
How to reproduce:
yuniql init
v0.00
yuniql run
v0.01
yuniql run
Expected results:
_pre
,_draft
and_post
must be executed all the timeActual results:
The text was updated successfully, but these errors were encountered: