Forum Discussion
We cannot convert the value null to type Record.
- 1 year ago
I managed to solve the problem.
The problem is in the connector with my datalake, which is Dremio.
What used to be
= Dremio.DatabasesV370(Dremio_Fonte, "Disabled", null, null, null)It changed to:
= Dremio.DatabasesV370(Dremio_Fonte, "Disabled", null, null, null, [])I made the change in the reports and it is updating normally now.
I managed to solve the problem.
The problem is in the connector with my datalake, which is Dremio.
What used to be
= Dremio.DatabasesV370(Dremio_Fonte, "Disabled", null, null, null)
It changed to:
= Dremio.DatabasesV370(Dremio_Fonte, "Disabled", null, null, null, [])
I made the change in the reports and it is updating normally now.
- cultcargo1 year agoNew Member
Thank you for sharing the fix!
We, in Dremio, have updated our doc page with this mitigation steps.
For Cloud connector
DremioCloud.DatabasesByServerV370(servername, projectId, engine, routingTag, routingQueue, encryption, [])
And for Software connector
Dremio.DatabasesV370(servername, encryption, engine, routingTag, routingQueue, [])I would like to highlight, that the number of arguments for Cloud connector function (DatabasesByServerV370) is +1 compare to the Software connector (Dremio.DatabasesV370). Only the very last null argument should be changed to []. So, it is 7th argument in case of DremioCloud.DatabasesByServerV370 and 6th in case of Dremio.DatabasesV370.
The fix is also submitted to Microsoft for the next release of the connectors in upcoming weeks.