Class Sequel::Postgres::PGRow::HashRow
In: lib/sequel/extensions/pg_row.rb
Parent: DelegateClass(Hash)

Class for row-valued/composite types that are treated as hashes. Types registered via Database#register_row_type will use this class by default.

Methods

Included Modules

Sequel::SQL::AliasMethods

External Aliases

new -> call
  Alias new to call, so that the class itself can be used directly as a converter.
__getobj__ -> to_hash
  Return the underlying hash for this delegate object.

Attributes

columns  [RW]  The columns associated with this class.
columns  [W]  Sets the columns associated with this instance. This is used to override the class‘s default columns.
db_type  [RW]  The database type for this class. May be nil if this class done not have a specific database type.
db_type  [W]  Sets the database type associated with this instance. This is used to override the class‘s default database type.

Public Class methods

Create a new subclass of this class with the given database type and columns.

[Source]

     # File lib/sequel/extensions/pg_row.rb, line 163
163:         def self.subclass(db_type, columns)
164:           Class.new(self) do
165:             @db_type = db_type
166:             @columns = columns
167:           end
168:         end

Public Instance methods

Check that the HashRow has valid columns. This should be used before all attempts to literalize the object, since literalization depends on the columns to get the column order.

[Source]

     # File lib/sequel/extensions/pg_row.rb, line 196
196:         def check_columns!
197:           if columns.nil? || columns.empty?
198:             raise Error, 'cannot literalize HashRow without columns'
199:           end
200:         end

Return the instance‘s columns, or the class‘s columns if the instance has not overridden it.

[Source]

     # File lib/sequel/extensions/pg_row.rb, line 183
183:         def columns
184:           @columns || self.class.columns
185:         end

Return the instance‘s database type, or the class‘s columns if the instance has not overridden it.

[Source]

     # File lib/sequel/extensions/pg_row.rb, line 189
189:         def db_type
190:           @db_type || self.class.db_type
191:         end

Append SQL fragment related to this object to the sql.

[Source]

     # File lib/sequel/extensions/pg_row.rb, line 203
203:         def sql_literal_append(ds, sql)
204:           check_columns!
205:           sql << ROW
206:           ds.literal_append(sql, values_at(*columns))
207:           if db_type
208:             sql << CAST
209:             ds.quote_schema_table_append(sql, db_type)
210:           end
211:         end

[Validate]