With the upcoming changes for mssql, we get result types in the visitors and don't need to panic anymore in cases where user wants to use types such as Array in databases that do not support them (everything else except PostgreSQL).
Remove all places of panic!, unimplemented! etc. and replace them with proper error types.
With the upcoming changes for mssql, we get result types in the visitors and don't need to panic anymore in cases where user wants to use types such as
Array
in databases that do not support them (everything else except PostgreSQL).Remove all places of
panic!
,unimplemented!
etc. and replace them with proper error types.