Skip to content

Commit

Permalink
Fix: Athena timestamp precision (sodadata#1886)
Browse files Browse the repository at this point in the history
m1n0 authored Jun 5, 2023
1 parent 5f5bd50 commit efcfdda
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions soda/athena/soda/data_sources/athena_data_source.py
Original file line number Diff line number Diff line change
@@ -76,8 +76,8 @@ def connect(self):
DataType.DECIMAL: "double",
DataType.DATE: "date",
DataType.TIME: "date",
DataType.TIMESTAMP: "timestamp",
DataType.TIMESTAMP_TZ: "timestamp",
DataType.TIMESTAMP: "timestamp(3)",
DataType.TIMESTAMP_TZ: "timestamp(3)",
DataType.BOOLEAN: "boolean",
}

0 comments on commit efcfdda

Please sign in to comment.