Unverified Commit 5c2e98eb authored by Adam Boscarino's avatar Adam Boscarino Committed by GitHub

fix: Correct typo in Snowflake Last Updated extract query (#358)

Signed-off-by: 's avatarTao Feng <fengtao04@gmail.com>
parent f931f586
...@@ -28,7 +28,7 @@ class SnowflakeTableLastUpdatedExtractor(Extractor): ...@@ -28,7 +28,7 @@ class SnowflakeTableLastUpdatedExtractor(Extractor):
lower({cluster_source}) AS cluster, lower({cluster_source}) AS cluster,
lower(t.table_schema) AS schema, lower(t.table_schema) AS schema,
lower(t.table_name) AS table_name, lower(t.table_name) AS table_name,
DATA_PART(EPOCH, t.last_altered) AS last_updated_time DATE_PART(EPOCH, t.last_altered) AS last_updated_time
FROM FROM
{database}.INFORMATION_SCHEMA.TABLES t {database}.INFORMATION_SCHEMA.TABLES t
{where_clause_suffix}; {where_clause_suffix};
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment