Fixing ovewrite integration tests (#92). A new enhancement has been implemented for the overwrite feature's integration tests, addressing a concern with write operations. Two new variables, catalog and "schema", have been incorporated using the env_or_skip function. These variables are utilized in the save_table method, which is now invoked twice with the same table, once with the append and once with the overwrite option. The data in the table is retrieved and checked for accuracy after each call, employing the updated Row class with revised field names first and "second", formerly name and "id". This modification ensures the proper operation of the overwrite feature during integration tests and resolves any related issues. The commit message Fixing overwrite integration tests signifies this change.
overwrite
feature's integration tests, addressing a concern with write operations. Two new variables,catalog
and "schema", have been incorporated using theenv_or_skip
function. These variables are utilized in thesave_table
method, which is now invoked twice with the same table, once with theappend
and once with theoverwrite
option. The data in the table is retrieved and checked for accuracy after each call, employing the updatedRow
class with revised field namesfirst
and "second", formerlyname
and "id". This modification ensures the proper operation of theoverwrite
feature during integration tests and resolves any related issues. The commit messageFixing overwrite integration tests
signifies this change.