From bc93a5fee088c77882ed070f61f2703a80b3a74a Mon Sep 17 00:00:00 2001 From: Tilmann Singer Date: Wed, 2 Jun 2021 15:48:32 +0200 Subject: [PATCH] Add column type timestamp with time zone to athena adapter --- lib/blazer/adapters/athena_adapter.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/blazer/adapters/athena_adapter.rb b/lib/blazer/adapters/athena_adapter.rb index 31c118ce0..4293bc9da 100644 --- a/lib/blazer/adapters/athena_adapter.rb +++ b/lib/blazer/adapters/athena_adapter.rb @@ -60,7 +60,7 @@ def run_statement(statement, comment) column_types.each_with_index do |ct, i| # TODO more column_types case ct - when "timestamp" + when "timestamp", "timestamp with time zone" rows.each do |row| row[i] = utc.parse(row[i]) end