ソースを参照

Strip trailing semicolon for Apache Drill

Andrew Kane 7 年 前
コミット
1fe79eca57
1 ファイル変更2 行追加1 行削除
  1. 2 1
      lib/blazer/adapters/drill_adapter.rb

+ 2 - 1
lib/blazer/adapters/drill_adapter.rb

@@ -8,7 +8,8 @@ module Blazer
 
         drill = ::Drill.new(url: settings["url"])
         begin
-          response = drill.query(statement)
+          # remove trailing semicolon
+          response = drill.query(statement.sub(/;\s*\z/, ""))
           rows = response.map { |r| r.values }
           columns = rows.any? ? response.first.keys : []
         rescue => e