aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel/sql_literal.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/arel/sql_literal.rb')
-rw-r--r--lib/arel/sql_literal.rb13
1 files changed, 0 insertions, 13 deletions
diff --git a/lib/arel/sql_literal.rb b/lib/arel/sql_literal.rb
deleted file mode 100644
index a98a9a058c..0000000000
--- a/lib/arel/sql_literal.rb
+++ /dev/null
@@ -1,13 +0,0 @@
-module Arel
- class SqlLiteral < String
- def relation
- nil
- end
-
- def to_sql(formatter = nil)
- self
- end
-
- include Attribute::Expressions
- end
-end