소스 검색

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