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
I guess this would be a feature request since I don't know how to achieve this. Is there a way to allow post_operations block to run even if the select statement fails? As far as know there isn't, it won't run if there are any errors.
Is there any other way to ensure some SQL execution after the select statement fails?
config {
type: "table"
}
pre_operations {
SELECT 1 AS one; -- this runs just fine, no errors
}
post_operations {
SELECT 3 AS three; -- how can I make sure this runs even if 'SELECT 2 AS two' fails
}
-- let's assume this fails for whatever reason
SELECT 2 AS two
The text was updated successfully, but these errors were encountered:
I guess this would be a feature request since I don't know how to achieve this. Is there a way to allow
post_operations
block to run even if the select statement fails? As far as know there isn't, it won't run if there are any errors.Is there any other way to ensure some SQL execution after the select statement fails?
The text was updated successfully, but these errors were encountered: