class Qdsl::IsTrue
Public Class Methods
new(column)
click to toggle source
# File lib/is_true.rb, line 3 def initialize(column) @column = column end
Public Instance Methods
render_sql(context, ids)
click to toggle source
# File lib/is_true.rb, line 11 def render_sql(context, ids) column_result = render_operand(context, ids, @column) column_result end
to_expression()
click to toggle source
# File lib/is_true.rb, line 7 def to_expression self end