TypingDedupingRawTableOperations
interface TypingDedupingRawTableOperations
Functions
Link copied to clipboard
Get the generation of a single record in the raw table. Not necessarily the min or max generation, just any record.
Link copied to clipboard
Swap the "temporary" raw table into the "real" raw table. For example, DROP TABLE IF NOT EXISTS airbyte_internal.foo; ALTER TABLE airbyte_internal.foo_tmp RENAME TO foo.
Link copied to clipboard
Prepare the raw table, including any associated blob storage. Similar to createFinalTable, accepts a suffix parameter, which should be used in conjunction with overwriteRawTable.
Link copied to clipboard
Copy all records from the temporary raw table into the real raw table, then drop the temporary raw table. For example INSERT INTO airbyte_internal.foo SELECT * FROM airbyte_internal.foo_tmp; DROP TABLE airbyte_internal.foo_tmp.