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
Right now, the code to create a Qbeast Table without data (no SAVE AS), is done in two steps:
Create an empty data frame and save it in the Location.
Convert the Delta Table to the Qbeast Table with ConvertToQbeastCommand.
It is executed like that because we do not have access to methods in the CreateDeltaTableCommand, nor can we delegate the creation to that object. Otherwise (if we call directly CreateDeltaTableCommand), the table would be created in the Catalog as "delta", and the whole operation would fail.
The idea is to do both in the same transaction.
Perhaps it is a good moment to build a CreateQbeastTableCommand to centralize the process.
The text was updated successfully, but these errors were encountered:
Right now, the code to create a Qbeast Table without data (no SAVE AS), is done in two steps:
ConvertToQbeastCommand
.It is executed like that because we do not have access to methods in the
CreateDeltaTableCommand
, nor can we delegate the creation to that object. Otherwise (if we call directly CreateDeltaTableCommand), the table would be created in the Catalog as "delta", and the whole operation would fail.The idea is to do both in the same transaction.
Perhaps it is a good moment to build a
CreateQbeastTableCommand
to centralize the process.The text was updated successfully, but these errors were encountered: