Class: ActiveRecord::ConnectionAdapters::PostgreSQL::Name

Inherits:
Object
  • Object
show all
Defined in:
lib/arjdbc/postgresql/name.rb

Instance Method Summary collapse

Instance Method Details

#quotedObject



7
8
9
10
11
12
13
# File 'lib/arjdbc/postgresql/name.rb', line 7

def quoted
  if schema
    "#{quote_identifier(schema)}#{SEPARATOR}#{quote_identifier(identifier)}"
  else
    quote_identifier(identifier)
  end
end