# File lib/rubyrep/connection_extenders/postgresql_extender.rb, line 89 def schemas unless @schemas search_path = select_one("show search_path")['search_path'] @schemas = search_path.split(/,/).map { |p| quote(p.strip) }.join(',') end @schemas end