lib/torque/postgresql/config.rb in torque-postgresql-2.3.0 vs lib/torque/postgresql/config.rb in torque-postgresql-2.4.0
- old
+ new
@@ -67,12 +67,16 @@
# Define the key that is used on auxiliary statements to send extra
# arguments to format string or send on a proc
cte.send_arguments_key = :args
- # Estipulate a class name (which may contain namespace) that expose the
+ # Estipulate a class name (which may contain namespace) that exposes the
# auxiliary statement in order to perform detached CTEs
cte.exposed_class = 'TorqueCTE'
+
+ # Estipulate a class name (which may contain namespace) that exposes the
+ # recursive auxiliary statement in order to perform detached CTEs
+ cte.exposed_recursive_class = 'TorqueRecursiveCTE'
end
# Configure ENUM features
config.nested(:enum) do |enum|