we update the sqlds dependency to it's newest version ( we want the feature where the "executed query string" is returned even when there is an error, this makes debugging queries with macros a lot easier: https://github.com/grafana/sqlds/pull/117 ).
we had to handle a deprecation-warning, had to replace sqlds.Query with sqlutil.query
and we also update the plugin-sdk-go to it's newest version.
hi @yesoreyeram , could you re-review it please? i had to add one more commit, sqlds.Query is now deprecated, so the linter complained, it has to be replaced with sqlutil.Query.
we update the
sqlds
dependency to it's newest version ( we want the feature where the "executed query string" is returned even when there is an error, this makes debugging queries with macros a lot easier: https://github.com/grafana/sqlds/pull/117 ).we had to handle a deprecation-warning, had to replace
sqlds.Query
withsqlutil.query
and we also update the plugin-sdk-go to it's newest version.