Module: Sequel::FilterHaving

Defined in:
lib/sequel/extensions/filter_having.rb

Instance Method Summary collapse

Instance Method Details

#and(*cond, &block) ⇒ Object

Operate on HAVING clause if HAVING clause already present.



27
28
29
30
31
32
33
# File 'lib/sequel/extensions/filter_having.rb', line 27

def and(*cond, &block)
  if @opts[:having]
    having(*cond, &block)
  else
    super
  end
end

#exclude(*cond, &block) ⇒ Object

Operate on HAVING clause if HAVING clause already present.



36
37
38
39
40
41
42
# File 'lib/sequel/extensions/filter_having.rb', line 36

def exclude(*cond, &block)
  if @opts[:having]
    exclude_having(*cond, &block)
  else
    super
  end
end

#filter(*cond, &block) ⇒ Object

Operate on HAVING clause if HAVING clause already present.



45
46
47
48
49
50
51
# File 'lib/sequel/extensions/filter_having.rb', line 45

def filter(*cond, &block)
  if @opts[:having]
    having(*cond, &block)
  else
    super
  end
end

#or(*cond, &block) ⇒ Object

Operate on HAVING clause if HAVING clause already present.



54
55
56
57
58
59
60
61
# File 'lib/sequel/extensions/filter_having.rb', line 54

def or(*cond, &block)
  if having = @opts[:having]
    cond = cond.first if cond.size == 1
    clone(:having => SQL::BooleanExpression.new(:OR, having, filter_expr(cond, &block)))
  else
    super
  end
end