aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/postgresql
Commit message (Expand)AuthorAgeFilesLines
* pg, inline casting methods into `OID::Type` objects.Yves Senn2014-06-024-44/+25
* refactor, introduce `Type#type_cast_for_schema` to cast for schema.rbYves Senn2014-05-302-0/+15
* pg, support default values for enum types. Closes #7814.Yves Senn2014-05-301-1/+1
* pg, `default_sequence_name` respects schema. Closes #7516.Yves Senn2014-05-301-2/+2
* Merge pull request #11896 from nkondratyev/fix_pg_columns_for_distinctYves Senn2014-05-301-1/+1
|\
| * Fixed `columns_for_distinct` of postgresql adapterNikolay Kondratyev2013-08-151-1/+1
* | pg, `reset_pk_sequence!` respects schemas. Closes #14719.Yves Senn2014-05-301-5/+13
* | pg, `PostgreSQL::Name` to hold schema qualified names.Yves Senn2014-05-303-17/+53
* | Refactor serialized types to be partially defined as custom propertiesSean Griffin2014-05-291-4/+0
* | Ensure we always use instances of the adapter specific column classSean Griffin2014-05-281-1/+5
* | pg, keep `hstore` and `json` attributes as `Hash` in @attributes.Yves Senn2014-05-282-2/+14
* | remove unwanted `to_sym` call.Kuldeep Aggarwal2014-05-261-1/+1
* | pg, remove duplicated code.Yves Senn2014-05-241-4/+0
* | pg, extract schema definitions into separate file.Yves Senn2014-05-241-0/+138
* | Merge pull request #15280 from sgrif/sg-postgres-defaultsRafael Mendonça França2014-05-232-76/+7
|\ \
| * | Move parsing of PG sql strings for defaults out of columnSean Griffin2014-05-232-76/+7
* | | Inline type cast method for PG pointsSean Griffin2014-05-232-8/+4
|/ /
* | Push limit to type objectsSean Griffin2014-05-221-9/+0
* | Push scale to type objectsSean Griffin2014-05-221-1/+1
* | Move `extract_precision` onto type objectsDan Croak and Sean Griffin2014-05-222-13/+2
* | Merge pull request #15249 from sgrif/sg-register-types-in-adapterRafael Mendonça França2014-05-222-73/+13
|\ \
| * | Use the generic type map for all PG type registrationsSean Griffin2014-05-222-73/+13
* | | Allow additional arguments to be used during type map lookupsSean Griffin2014-05-221-1/+1
|/ /
* | Merge pull request #15218 from sgrif/sg-move-oid-typesRafael Mendonça França2014-05-2123-353/+532
|\ \
| * | Move PG OID types to their own filesSean Griffin2014-05-2123-353/+532
* | | Rename `oid_type` to `cast_type` to make PG columns consistentSean Griffin2014-05-211-5/+4
|/ /
* | push `extract_scale` to the `Type`.Yves Senn2014-05-212-6/+4
* | Delegate `type_cast_for_write` to injected type objectSean Griffin2014-05-201-11/+0
* | Merge pull request #15206 from sgrif/sg-type-map-postgresqlRafael Mendonça França2014-05-201-42/+5
|\ \
| * | Use the generic type map for PostgreSQL OID registrationsSean Griffin2014-05-201-42/+5
* | | Delegate predicate methods to injected type object on ColumnSean Griffin2014-05-202-8/+4
|/ /
* | Merge pull request #15203 from sgrif/sg-delegate-type-castRafael Mendonça França2014-05-201-7/+0
|\ \
| * | Replace `type_cast` case statement with delegationSean Griffin2014-05-201-7/+0
* | | Have Postgres OID types inherit from general typesSean Griffin2014-05-202-146/+80
|/ /
* | Delegate `Column#type` to the injected type objectSean Griffin2014-05-192-13/+5
* | pg, re-introduce `PostgreSQL::Utils` to unify schema/table extraction.Yves Senn2014-05-193-24/+30
* | pg, add missing nodocs for extracted modules.Yves Senn2014-05-194-6/+6
* | Merge pull request #15156 from sgrif/sg-postgres-timestampsYves Senn2014-05-181-6/+3
|\ \
| * | PostgreSQL timestamps are always datetimesSean Griffin2014-05-171-6/+3
* | | Add a type object to Column constructorSean Griffin2014-05-171-2/+2
|/ /
* | :scissors:Rafael Mendonça França2014-05-142-2/+0
* | Methods of these modules are internalRafael Mendonça França2014-05-142-14/+14
* | PostgreSQLAdapter::Utils seems to be only used from a single spot - quite red...kares2014-05-141-1/+19
* | move PostgreSQL's DatabaseStatements out of the PostgreSQLAdapter name-spacekares2014-05-141-1/+6
* | PostgreSQL's SchemaStatements seems a could candidate for re-use (with AR-JDBC)kares2014-05-141-6/+2
* | introduce AR::ConnectionAdapters::PostgreSQL for sharing modules (with AR-JDBC)kares2014-05-146-9/+10
* | Merge pull request #15092 from kares/pg-array-parserRafael Mendonça França2014-05-132-27/+27
|\ \
| * | [postgres] include PgArrayParser directly and only load/include ArrayParser i...kares2014-05-132-27/+27
* | | extract pg type map initialization process to `TypeMapInitializer`.Yves Senn2014-05-131-0/+71
|/ /
* | pg, `change_column_default` accepts `[]`. Closes #11586.Yves Senn2014-05-122-2/+3