From 1f5ed8eb20231644525bdad9a94a91e810191186 Mon Sep 17 00:00:00 2001 From: Ernie Miller Date: Fri, 29 Apr 2011 14:27:45 -0400 Subject: Stop calling to_s on aliases, require them to be strings already. --- lib/arel/alias_predication.rb | 2 +- lib/arel/nodes/function.rb | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'lib') diff --git a/lib/arel/alias_predication.rb b/lib/arel/alias_predication.rb index 3f3db7671e..f42e9ee1a6 100644 --- a/lib/arel/alias_predication.rb +++ b/lib/arel/alias_predication.rb @@ -1,7 +1,7 @@ module Arel module AliasPredication def as other - Nodes::As.new self, Nodes::SqlLiteral.new(other.to_s) + Nodes::As.new self, Nodes::SqlLiteral.new(other) end end end \ No newline at end of file diff --git a/lib/arel/nodes/function.rb b/lib/arel/nodes/function.rb index 3263ff9cd4..85347fc028 100644 --- a/lib/arel/nodes/function.rb +++ b/lib/arel/nodes/function.rb @@ -6,12 +6,12 @@ module Arel def initialize expr, aliaz = nil @expressions = expr - @alias = aliaz && SqlLiteral.new(aliaz.to_s) + @alias = aliaz && SqlLiteral.new(aliaz) @distinct = false end def as aliaz - self.alias = SqlLiteral.new(aliaz.to_s) + self.alias = SqlLiteral.new(aliaz) self end end -- cgit v1.2.3