# File lib/arel/select_manager.rb, line 48 def as other create_table_alias grouping(@ast), Nodes::SqlLiteral.new(other) end
# File lib/arel/select_manager.rb, line 24 def constraints @ctx.wheres end
# File lib/arel/select_manager.rb, line 146 def distinct(value = true) if value @ctx.set_quantifier = Arel::Nodes::Distinct.new else @ctx.set_quantifier = nil end end
# File lib/arel/select_manager.rb, line 188 def except other Nodes::Except.new ast, other.ast end
Produces an Arel::Nodes::Exists node
# File lib/arel/select_manager.rb, line 44 def exists Arel::Nodes::Exists.new @ast end
# File lib/arel/select_manager.rb, line 85 def from table table = Nodes::SqlLiteral.new(table) if String === table # FIXME: this is a hack to support # test_with_two_tables_in_from_without_getting_double_quoted # from the AR tests. case table when Nodes::Join @ctx.source.right << table else @ctx.source.left = table end self end
# File lib/arel/select_manager.rb, line 101 def froms @ast.cores.map { |x| x.from }.compact end
# File lib/arel/select_manager.rb, line 74 def group *columns columns.each do |column| # FIXME: backwards compat column = Nodes::SqlLiteral.new(column) if String === column column = Nodes::SqlLiteral.new(column.to_s) if Symbol === column @ctx.groups.push Nodes::Group.new column end self end
# File lib/arel/select_manager.rb, line 118 def having *exprs @ctx.having = Nodes::Having.new(collapse(exprs, @ctx.having)) self end
# File lib/arel/select_manager.rb, line 14 def initialize_copy other super @ctx = @ast.cores.last end
# File lib/arel/select_manager.rb, line 184 def intersect other Nodes::Intersect.new ast, other.ast end
# File lib/arel/select_manager.rb, line 105 def join relation, klass = Nodes::InnerJoin return self unless relation case relation when String, Nodes::SqlLiteral raise if relation.blank? klass = Nodes::StringJoin end @ctx.source.right << create_join(relation, nil, klass) self end
# File lib/arel/select_manager.rb, line 230 def join_sources @ctx.source.right end
# File lib/arel/select_manager.rb, line 216 def join_sql return nil if @ctx.source.right.empty? sql = visitor.dup.extend(Visitors::JoinSql).accept @ctx Nodes::SqlLiteral.new sql end
# File lib/arel/select_manager.rb, line 238 def joins manager if $VERBOSE warn "joins is deprecated and will be removed in 4.0.0" warn "please remove your call to joins from #{caller.first}" end manager.join_sql end
# File lib/arel/select_manager.rb, line 19 def limit @ast.limit && @ast.limit.expr end
# File lib/arel/select_manager.rb, line 52 def lock locking = Arel.sql('FOR UPDATE') case locking when true locking = Arel.sql('FOR UPDATE') when Arel::Nodes::SqlLiteral when String locking = Arel.sql locking end @ast.lock = Nodes::Lock.new(locking) self end
# File lib/arel/select_manager.rb, line 28 def offset @ast.offset && @ast.offset.expr end
# File lib/arel/select_manager.rb, line 69 def on *exprs @ctx.source.right.last.right = Nodes::On.new(collapse(exprs)) self end
# File lib/arel/select_manager.rb, line 154 def order *expr # FIXME: We SHOULD NOT be converting these to SqlLiteral automatically @ast.orders.concat expr.map { |x| STRING_OR_SYMBOL_CLASS.include?(x.class) ? Nodes::SqlLiteral.new(x.to_s) : x } self end
# File lib/arel/select_manager.rb, line 223 def order_clauses visitor = Visitors::OrderClauses.new(@engine.connection) visitor.accept(@ast).map { |x| Nodes::SqlLiteral.new x } end
# File lib/arel/select_manager.rb, line 162 def orders @ast.orders end
# File lib/arel/select_manager.rb, line 129 def project *projections # FIXME: converting these to SQLLiterals is probably not good, but # rails tests require it. @ctx.projections.concat projections.map { |x| STRING_OR_SYMBOL_CLASS.include?(x.class) ? SqlLiteral.new(x.to_s) : x } self end
# File lib/arel/select_manager.rb, line 138 def projections @ctx.projections end
# File lib/arel/select_manager.rb, line 142 def projections= projections @ctx.projections = projections end
# File lib/arel/select_manager.rb, line 32 def skip amount if amount @ast.offset = Nodes::Offset.new(amount) else @ast.offset = nil end self end
# File lib/arel/select_manager.rb, line 234 def source @ctx.source end
# File lib/arel/select_manager.rb, line 204 def take limit if limit @ast.limit = Nodes::Limit.new(limit) @ctx.top = Nodes::Top.new(limit) else @ast.limit = nil @ctx.top = nil end self end
# File lib/arel/select_manager.rb, line 173 def union operation, other = nil if other node_class = Nodes.const_get("Union#{operation.to_s.capitalize}") else other = operation node_class = Nodes::Union end node_class.new self.ast, other.ast end
# File lib/arel/select_manager.rb, line 166 def where_sql return if @ctx.wheres.empty? viz = Visitors::WhereSql.new @engine.connection Nodes::SqlLiteral.new viz.accept @ctx end
# File lib/arel/select_manager.rb, line 123 def window name window = Nodes::NamedWindow.new(name) @ctx.windows.push window window end
# File lib/arel/select_manager.rb, line 193 def with *subqueries if subqueries.first.is_a? Symbol node_class = Nodes.const_get("With#{subqueries.shift.to_s.capitalize}") else node_class = Nodes::With end @ast.with = node_class.new(subqueries.flatten) self end
Generated with the Darkfish Rdoc Generator 2.