Sha256: 39cf8af58815adefbff61589ae375155246ba60c92756b81168f8b0013892b82
Contents?: true
Size: 812 Bytes
Versions: 1
Compression:
Stored size: 812 Bytes
Contents
class Upsert class ColumnDefinition # @private class PG_Connection < ColumnDefinition class << self # activerecord-3.2.5/lib/active_record/connection_adapters/postgresql_adapter.rb#column_definitions def all(connection, table_name) res = connection.execute <<-EOS SELECT a.attname AS name, format_type(a.atttypid, a.atttypmod) AS sql_type, d.adsrc AS default FROM pg_attribute a LEFT JOIN pg_attrdef d ON a.attrelid = d.adrelid AND a.attnum = d.adnum WHERE a.attrelid = '#{connection.quote_ident(table_name)}'::regclass AND a.attnum > 0 AND NOT a.attisdropped EOS res.map do |row| new connection, row['name'], row['sql_type'], row['default'] end.sort_by do |cd| cd.name end end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
upsert-1.0.2 | lib/upsert/column_definition/PG_Connection.rb |