From 2d78e3a160068d7a024e30b2178084d16cea9807 Mon Sep 17 00:00:00 2001 From: Keenan Brock Date: Tue, 4 Oct 2016 18:28:49 -0400 Subject: Introduce NodeExpression as parent of scalar nodes SQL is very powerful. Many nodes can be used as a sub expression or query. grouping all of these possible nodes together --- lib/arel/nodes.rb | 1 + 1 file changed, 1 insertion(+) (limited to 'lib/arel/nodes.rb') diff --git a/lib/arel/nodes.rb b/lib/arel/nodes.rb index bb8ad6500b..8c6572dd6a 100644 --- a/lib/arel/nodes.rb +++ b/lib/arel/nodes.rb @@ -1,6 +1,7 @@ # frozen_string_literal: true # node require 'arel/nodes/node' +require 'arel/nodes/node_expression' require 'arel/nodes/select_statement' require 'arel/nodes/select_core' require 'arel/nodes/insert_statement' -- cgit v1.2.3