ソースを参照

Handle empty rows

Andrew Kane 7 年 前
コミット
0672d6d5cf
1 ファイル変更1 行追加1 行削除
  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