aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters
Commit message (Collapse)AuthorAgeFilesLines
* push SQL generation inside the schema creation objectAaron Patterson2013-03-224-12/+20
|
* mostly decouple TableDefinition from the database connectionAaron Patterson2013-03-223-5/+5
|
* remove to_sql from TableDefinitionAaron Patterson2013-03-223-9/+5
|
* decouple column definition from the database connectionAaron Patterson2013-03-222-8/+8
|
* stop depending on sql_type in pgAaron Patterson2013-03-221-6/+8
|
* remove knowledge of SQL from the column definition objectAaron Patterson2013-03-222-21/+43
|
* use `connect_poll` on pg so that reaping does not hurt the connectionAaron Patterson2013-03-202-3/+4
|
* Revert "default the reaping frequency to 10 seconds"Aaron Patterson2013-03-201-1/+1
| | | | | | | mysql can't handle a parallel thread pinging the connection, so we can get wrong results or segvs This reverts commit 7cc588b684f6d1af3e7fab1edfa6715e269e41a2.
* Revert "Merge pull request #9784 from ↵Carlos Antonio da Silva2013-03-181-4/+4
| | | | | | | | | | vipulnsward/change_from_blank_to_empty_on_string" This reverts commit 9c4c05fc82e997b722dec4068c3aa27eaee69eb8, reversing changes made to 4620bdcefd0c88905a005f191496df887877b8f3. Reason: They're not completely interchangeable, since blank? will also check for strings containing spaces.
* Merge pull request #9784 from vipulnsward/change_from_blank_to_empty_on_stringCarlos Antonio da Silva2013-03-181-4/+4
|\ | | | | Change from blank? to empty? on obvious string values to save extra calls
| * change from blank? to empty? on obvious string values to save extra method ↵Vipul A M2013-03-191-4/+4
| | | | | | | | calls
* | fix typos in AR. lots of them.Vipul A M2013-03-192-2/+2
|/
* sets limit 191 for schema_migrations#version in mysql2 if the encoding is ↵Xavier Noria2013-03-171-0/+9
| | | | | | "utf8mb4" Please, see rationale in the included CHANGELOG patch.
* Refactored to reuse methodAnupam Choudhury2013-03-151-2/+2
|
* Merge pull request #9686 from strzalek/cast_number_to_string_in_pgJon Leighton2013-03-151-3/+6
|\ | | | | Cast number to string in Postgres
| * Cast number to string in PostgresŁukasz Strzałkowski2013-03-121-3/+6
| | | | | | | | fixes #9170
* | ask column if it is a pkAaron Patterson2013-03-141-1/+5
| |
* | fix hash duping on 1.9Aaron Patterson2013-03-141-1/+1
| |
* | clean up pk delclaration in `create_table`Aaron Patterson2013-03-141-1/+8
| |
* | just access the ivars rather than rb_iv_getAaron Patterson2013-03-141-5/+3
| |
* | hide more data in the schema cacheAaron Patterson2013-03-141-1/+21
| |
* | safely publish columns and columns hash infoAaron Patterson2013-03-141-4/+12
| |
* | dup and set the default proc to nil rather than looping through everythingAaron Patterson2013-03-141-1/+3
| |
* | you can provide uuid_generate_v4 as the default value for uuid columnsAaron Patterson2013-03-142-2/+9
| |
* | pg is the only adapter that supports the xml type, so push the method downAaron Patterson2013-03-142-9/+4
| |
* | Apparently people were mutating this array. :'(Aaron Patterson2013-03-141-3/+3
| | | | | | | | This reverts commit abba61e2bbe320894ba8449ebdf778a1d2af545b.
* | hashes are ordered, so just use the columns_hash ivarAaron Patterson2013-03-141-3/+3
| |
* | use the method so we do not depend on internal ivarsAaron Patterson2013-03-141-1/+1
| |
* | extract factory method and push common code up to abstract adapterAaron Patterson2013-03-142-7/+7
| |
* | Also quote extension name in disable_extensionStephen Touset2013-03-121-1/+1
|/ | | A patch was committed recently which quoted the extension name in the SQL for `enable_extension`. But the same wasn't done for `disable_extension`.
* Pass column to quote when copying a sqlite table.Matthew M. Boedicker2013-03-111-1/+9
| | | | To make quote escape binary data correctly it needs the column passed in.
* Fix typo [ci skip]Carlos Antonio da Silva2013-03-111-1/+1
|
* promotes change_column_null to the migrations APIXavier Noria2013-03-111-0/+20
|
* quick pass over the RDoc of schema_statements.rb [ci skip]Xavier Noria2013-03-111-122/+190
|
* documents how to DROP DEFAULT [ci skip]Xavier Noria2013-03-111-3/+7
|
* default the reaping frequency to 10 secondsAaron Patterson2013-03-111-1/+1
|
* fixes enable_extension bug in postgresql_adapterDarren Woodley2013-03-081-1/+1
| | | | | | | | | The use of quotations is required to install extensions with certain characters in them (e.g. uuid-ossp). removes CHANGELOG entry Deemed unnecessary.
* Make sure options is a hashRafael Mendonça França2013-03-081-1/+3
|
* Merge pull request #8868 from tehgeekmeister/masterRafael Mendonça França2013-03-081-0/+6
|\ | | | | | | | | | | | | | | | | Use the index name explicitly provided in a migration when reverting. Fixes #8868 Conflicts: activerecord/CHANGELOG.md
| * If an index can't be found by column, use the index name.Ezekiel Smithburg2013-03-071-0/+6
| | | | | | | | schema_statements uses the column name by default to construct the index name, and then raises an exception if it doesn't exist, even if the name option is specified, which causes #8858. this commit makes index_name_for_remove fall back to constructing the index name to remove based on the name option.
* | Unprepared Visitor + unprepared_statementCédric FABIANSKI2013-03-084-3/+14
|/
* SQLite3 3.6.8+ supports savepointsNeeraj Singh2013-03-071-1/+2
| | | | | http://www.sqlite.org/lang_savepoint.html https://github.com/rails/rails/blob/master/activerecord/lib/active_record/connection_adapters/sqlite3_adapter.rb#L130-L132
* `Connection#structure_dump` is no longer used. #9518Yves Senn2013-03-062-19/+0
| | | | | | | As of ccc6910c we use `mysqldump` to create the `structure.sql`. The old `#structure_dump` code is still in AR but never used. I removed all relevant parts from the code-base.
* Remove hard coded references to Active Record in railtiesJosé Valim2013-03-021-2/+2
|
* Fix PostgreSQL TIMESTAMP WITH TIME ZONE to return ActiveSupport::TimeTroy Kruthoff2013-03-011-4/+1
| | | | | | | | | | In an AR model a timestamptz attribute would return a ruby string and AR tests did not check for any type casting. Previous tests would pass only because an assert_equal was being used on a Time.utc object, which will parse the right side of the eq to a valid Time instance for comparision. switch to test instance of Time instead of ActiveSupport::TimeWithZone
* Wrong exception is occured when raising no translatable exceptionkennyj2013-03-011-0/+2
|
* Support PostgreSQL specific column types when using `change_table`.Yves Senn2013-02-282-6/+22
| | | | | | | | Closes #9480. We use `TableDefinition` for `#create_table` and `Table` for `#change_table`. The PostgreSQL sepcifc types were only defined on `TableDefinition` so I also added them to `Table`.
* update docs, change_table does not use TableDefinition.Yves Senn2013-02-281-3/+3
|
* Revert "Merge pull request #9207 from dylanahsmith/mysql-quote-numeric"Steve Klabnik2013-02-272-8/+4
| | | | | This reverts commit 408227d9c5ed7de26310d72a1a99c1ee02311c63, reversing changes made to dca0b57d03deffc933763482e615c3cf0b9a1d97.
* Fix default output for postgres network address typesErik Peterson2013-02-261-0/+11
|