aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel/nodes
diff options
context:
space:
mode:
Diffstat (limited to 'lib/arel/nodes')
-rw-r--r--lib/arel/nodes/exists.rb11
-rw-r--r--lib/arel/nodes/select_statement.rb2
2 files changed, 12 insertions, 1 deletions
diff --git a/lib/arel/nodes/exists.rb b/lib/arel/nodes/exists.rb
new file mode 100644
index 0000000000..167a345006
--- /dev/null
+++ b/lib/arel/nodes/exists.rb
@@ -0,0 +1,11 @@
+module Arel
+ module Nodes
+ class Exists
+ attr_reader :select_stmt
+
+ def initialize select_stmt
+ @select_stmt = select_stmt
+ end
+ end
+ end
+end
diff --git a/lib/arel/nodes/select_statement.rb b/lib/arel/nodes/select_statement.rb
index 6272fd126d..637ba5d1d0 100644
--- a/lib/arel/nodes/select_statement.rb
+++ b/lib/arel/nodes/select_statement.rb
@@ -14,7 +14,7 @@ module Arel
def initialize_copy other
super
- @cores = @cores.clone
+ @cores = @cores.map { |x| x.clone }
end
end
end