Progress does not support INTERSECT or EXCEPT
# File lib/sequel/adapters/shared/progress.rb, line 20 20: def supports_intersect_except? 21: false 22: end
# File lib/sequel/adapters/shared/progress.rb, line 26 26: def select_clause_methods 27: SELECT_CLAUSE_METHODS 28: end
Progress uses TOP for limit, but it is only supported in Progress 10. The Progress adapter targets Progress 9, so it silently ignores the option.
# File lib/sequel/adapters/shared/progress.rb, line 32 32: def select_limit_sql(sql) 33: raise(Error, "OFFSET not supported") if @opts[:offset] 34: # if l = @opts[:limit] 35: # sql << " TOP " 36: # literal_append(sql, l) 37: # end 38: end
Disabled; run with --debug to generate this.
Generated with the Darkfish Rdoc Generator 1.1.6.