Parcourir la source

Handle empty rows

Andrew Kane il y a 7 ans
Parent
commit
0672d6d5cf
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      lib/blazer/adapters/athena_adapter.rb

+ 1 - 1
lib/blazer/adapters/athena_adapter.rb

@@ -55,7 +55,7 @@ module Blazer
 
             utc = ActiveSupport::TimeZone['Etc/UTC']
 
-            rows = untyped_rows[1..-1]
+            rows = untyped_rows[1..-1] || []
             column_types.each_with_index do |ct, i|
               # TODO more column_types
               case ct