aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/cases/adapters/sqlite3/copy_table_test.rb
Commit message (Collapse)AuthorAgeFilesLines
* make it possible to run AR tests with bin/testYves Senn2015-06-111-1/+1
|
* Remove `Column#primary`Sean Griffin2014-05-231-1/+0
| | | | | | | | It appears to have been used at some point in the past, but is no longer used in any meaningful way. Whether a column is considered primary is a property of the model, not the schema/column. This also removes the need for yet another layer of caching of the model's schema, and we can leave that to the schema cache.
* remove unused fixtures from sqlite3 test casesRajarshi Das2014-02-141-1/+1
|
* each to each_value; remove unused varsVipul A M2013-04-071-2/+2
|
* Fix copy table index test; Change == to ! on false in travis.rbVipul A M2013-03-211-1/+1
|
* Pass column to quote when copying a sqlite table.Matthew M. Boedicker2013-03-111-1/+5
| | | | To make quote escape binary data correctly it needs the column passed in.
* refactor `SQLite3Adapter#copy_table` to prevent primary key redefinitions. #6378Yves Senn2012-10-281-1/+8
|
* Cleanup trailing whitespacesdfens2012-10-121-1/+1
|
* Set the primary key during #copy_table if necessary. Fixes [#2312]Sean Scally2012-05-141-0/+8
|
* please use ruby -I lib:test path/to/test.rb, or export RUBY_OPTAaron Patterson2011-06-061-1/+1
|
* Refactor Active Record test connection setup. Please see the ↵Jon Leighton2011-06-041-1/+1
| | | | RUNNING_UNIT_TESTS file for details, but essentially you can now configure things in test/config.yml. You can also run tests directly via the command line, e.g. ruby path/to/test.rb (no rake needed, uses default db connection from test/config.yml). This will help us fix the CI by enabling us to isolate the different Rails versions to different databases.
* Move sqlite to sqlite3 for this tests to be run only on sqlite3 adapterSantiago Pastorino2010-06-281-0/+80
Signed-off-by: José Valim <jose.valim@gmail.com>