aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel/nodes/select.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/arel/nodes/select.rb')
-rw-r--r--lib/arel/nodes/select.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/lib/arel/nodes/select.rb b/lib/arel/nodes/select.rb
new file mode 100644
index 0000000000..8f68adbcd5
--- /dev/null
+++ b/lib/arel/nodes/select.rb
@@ -0,0 +1,13 @@
+module Arel
+ module Nodes
+ class Select
+ attr_reader :froms, :projections, :wheres
+
+ def initialize
+ @froms = []
+ @projections = []
+ @wheres = []
+ end
+ end
+ end
+end