aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel/nodes/sql_literal.rb
blob: 526d08844981d1bb87c453d149bb6b7bcf94bb66 (plain) (blame)
1
2
3
4
5
6
7
8
9
module Arel
  module Nodes
    class SqlLiteral < String
      def count distinct = false
        Count.new [self], distinct
      end
    end
  end
end