Class: ActiveRecord::ConnectionAdapters::PostgreSQL::Name
- Inherits:
-
Object
- Object
- ActiveRecord::ConnectionAdapters::PostgreSQL::Name
- Defined in:
- lib/arjdbc/postgresql/name.rb
Instance Method Summary collapse
Instance Method Details
#quoted ⇒ Object
9 10 11 12 13 14 15 |
# File 'lib/arjdbc/postgresql/name.rb', line 9 def quoted if schema "#{quote_identifier(schema)}#{SEPARATOR}#{quote_identifier(identifier)}" else quote_identifier(identifier) end end |