Problem
In tables that use any form of epoch time, a view must be applied in order to convert epoch time into a datetime data type. Other methods of watermarking a table also use integers as well. For example, if a postgres xmin field were carried into Big Query table, it is an effective watermark for table activity.
In the case of epoch time, the only current solution I can think of is to create a view on the bigquery table.
Solution
Abstract datetime_key to allow integer watermarks as well.
Problem
In tables that use any form of epoch time, a view must be applied in order to convert epoch time into a datetime data type. Other methods of watermarking a table also use integers as well. For example, if a postgres xmin field were carried into Big Query table, it is an effective watermark for table activity.
In the case of epoch time, the only current solution I can think of is to create a view on the bigquery table.
Solution
Abstract datetime_key to allow integer watermarks as well.