rails--rails/activerecord/lib/arel.rb

56 lines
1.3 KiB
Ruby
Raw Normal View History

# frozen_string_literal: true
2018-02-24 06:45:50 +00:00
require "arel/errors"
require "arel/crud"
require "arel/factory_methods"
require "arel/expressions"
require "arel/predications"
require "arel/filter_predications"
2018-02-24 06:45:50 +00:00
require "arel/window_predications"
require "arel/math"
require "arel/alias_predication"
require "arel/order_predications"
require "arel/table"
require "arel/attributes/attribute"
2018-02-24 06:45:50 +00:00
require "arel/visitors"
require "arel/collectors/sql_string"
require "arel/tree_manager"
require "arel/insert_manager"
require "arel/select_manager"
require "arel/update_manager"
require "arel/delete_manager"
require "arel/nodes"
2010-08-12 21:55:31 +00:00
2019-09-26 23:37:42 +00:00
module Arel
2018-02-24 06:45:50 +00:00
VERSION = "10.0.0"
2010-09-26 23:06:37 +00:00
2019-09-26 23:37:42 +00:00
# Wrap a known-safe SQL string for passing to query methods, e.g.
#
# Post.order(Arel.sql("REPLACE(title, 'misc', 'zzzz') asc")).pluck(:id)
2019-09-26 23:37:42 +00:00
#
# Great caution should be taken to avoid SQL injection vulnerabilities.
# This method should not be used with unsafe values such as request
# parameters or model attributes.
2018-02-24 06:45:50 +00:00
def self.sql(raw_sql)
Arel::Nodes::SqlLiteral.new raw_sql
end
2019-09-26 23:37:42 +00:00
def self.star # :nodoc:
2018-02-24 06:45:50 +00:00
sql "*"
end
2019-09-26 23:37:42 +00:00
def self.arel_node?(value) # :nodoc:
value.is_a?(Arel::Nodes::Node) || value.is_a?(Arel::Attribute) || value.is_a?(Arel::Nodes::SqlLiteral)
end
2019-11-13 22:35:28 +00:00
def self.fetch_attribute(value, &block) # :nodoc:
unless String === value
value.fetch_attribute(&block)
end
end
2010-09-26 23:06:37 +00:00
end