Explorar el Código

Strip trailing semicolon for Apache Drill

Andrew Kane hace 7 años
padre
commit
1fe79eca57
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  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