class ActiveRecord::ConnectionAdapters::PostgreSQL::Name

def quoted

def quoted
  if schema
    PG::Connection.quote_ident(schema) << SEPARATOR << PG::Connection.quote_ident(identifier)
  else
    PG::Connection.quote_ident(identifier)
  end
end