Replies: 1 comment
-
Me personally I've just manually changed all the intervening scripts. It hasn't come up often enough for it to be much of an issue. There is logic to do something like this built into the |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I'm seeking for suggestions about a best practice approach when dealing with the (stupid) way Oracle handles packages, that means the whole package has to be rebuilt even if a small function changes in it.
Imagine I've changes like
01.sql
,02.sql
,03.sql
where the revert script of02.sql
is the deployment of01.sql
and so on.01
is deployed,02
and03
are ongoing work.A bug is found in the deployment of
01.sql
, so Isqitch revert
, fix the bug andsqtich deploy
. So far so good, but now I have to change manually all the revert scripts of subsequent changes.I cannot implement a subsequent bug fix as in
04.sql
because changes02
an03
could not be ready for deployment yet.Playing with git branches could help, but requires a little extra effort.
How do you deal with a situation like this?
Beta Was this translation helpful? Give feedback.
All reactions