lib/ronin/sql/operators.rb in ronin-sql-1.0.0 vs lib/ronin/sql/operators.rb in ronin-sql-1.1.0

- old
+ new

@@ -23,10 +23,12 @@ module Ronin module SQL # # Methods for creating SQL expressions. # + # @api public + # # @see http://sqlite.org/lang_expr.html # module Operators # # Multiplication. @@ -203,10 +205,10 @@ # # @return [BinaryExpr] # The new binary expression. # def is_not(other) - BinaryExpr.new(self,:"IS NOT",other) + BinaryExpr.new(self,[:IS, :NOT],other) end # # `LIKE` comparison. #