Replies: 1 comment
-
At present you need to explicitly handle this in your hydrate function. However in the upcoming version of |
Beta Was this translation helpful? Give feedback.
0 replies
# for free
to join this conversation on GitHub.
Already have an account?
# to comment
-
I am building a table with a hydrate function and that column is optional (if it exists great, but if not, just set to null)
When the hydrate function executes some of the rows will result in a not found error what is the correct way to ignore the error when encountered?
I tried setting
ShouldIgnoreError: isNotFoundError([]string{"ParameterNotFound"}),
to no effectThe error I see when trying to execute the query is:
Error: pq: rpc error: code = Unknown desc = ParameterNotFound:
Do I need to catch and process the error in my hydrate function, or is there another way to tell steampipe to ignore
ParameterNotFound
when encountered?Beta Was this translation helpful? Give feedback.
All reactions