| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
| |
Now, connection handles the check for valid types so that each database can handle the changes individually.
|
|\
| |
| | |
Introduce test on Error#full_message for attribute with underscores; Fix...
|
| |
| |
| |
| |
| | |
Introduce test on Error#full_message for attribute with underscores; Fix
some typos
|
|\ \
| | |
| | | |
Fix ActiveRecord locking column defaults not getting persisted
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
When partial inserts are enabled, overridden db defaults are ignored. This
results in locking columns having a nil value for new records if the db default
is null. This happens because the list of changed attributes for new records is
always assumed to be empty.
Solution: When a new record's default attributes are set, also initialize the
list of changed attributes by comparing current values against what's stored as
the column defaults in the database.
|
|\ \ \
| | | |
| | | |
| | | | |
Closes #9184
|
| | | |
| | | |
| | | |
| | | | |
Previously regex did not strip quotation marks where hstore values were multi-line strings.
|
|\ \ \ \
| |/ / /
|/| | |
| | | |
| | | | |
Custom index type support with :using.
Closes #9451
|
| | | | |
|
|/ / /
| | |
| | |
| | |
| | | |
Make it obvious that using unscoped with another scope
without the block works
|
|\ \ \
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
* schema:
add uuid primary key support
separate primary key from column type
push the mysql add_column up to the abstract adapter
allow multiple add columns
pull add_column_options! off the pg connection class
add a pg visitor for dealing with schema modification
push alter table add column sql in to the schema modification visitor
there is no reason to check for an already defined column
push column initialization down to the factory method
@columns list is no longer necessary
keep ivars private, do not manipulate them outside their owner object
factory methods should not alter object state
push SQL generation inside the schema creation object
mostly decouple TableDefinition from the database connection
remove to_sql from TableDefinition
decouple column definition from the database connection
stop depending on sql_type in pg
remove knowledge of SQL from the column definition object
|
| | | | |
|
| | | | |
|
| | | | |
|
|/ / / |
|
|\ \ \
| | | |
| | | | |
Removed unused loop variable
|
| | |/
| |/| |
|
|\ \ \
| | | |
| | | | |
Removed unnecessary block
|
| | | | |
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Conflicts:
activerecord/lib/active_record/associations/preloader/through_association.rb
activerecord/test/cases/associations/eager_test.rb
|
|/ / / |
|
|/ /
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
I don't think this is testing anything useful, and the test code is
exceedingly brittle. It is broken since
34c7e73c1def1312e59ef1f334586ff2f668246e because the test code makes
assumptions about the implementation of PostgreSQLAdapter#active? which
are incorrect after the commit.
I could fix this test but it would be even more brittle (by stubbing the
underlying @connection.connect_poll) and it doesn't test any complex
logic. I conclude that it's not worth it.
|
| | |
|
|\ \
| | |
| | | |
Fix copy table index test; Change == to ! on false in travis.rb
|
| | | |
|
|/ / |
|
| | |
|
| | |
|
| |
| |
| |
| | |
Type a fixo.
|
| |
| |
| |
| |
| | |
if the association already holds that record in memory before checking
the database for the specified ids.
|
|/
|
|
|
|
| |
it only cleared the validations that created :validate callbacks. This
didn't include the validates created by validates_with, so I've added a
method to clear all validations.
|
|
|
|
| |
Introduced in 5dc2e3531babcbdc165884d1a47cbcd13455522d.
|
|\
| |
| | |
Change from each to each_value;drop assignment in habtm
|
| |
| |
| |
| | |
2. drop assignment of value to sum in test
|
|\ \
| | |
| | | |
fix typos in AR. lots of them.
|
| |/ |
|
|\ \
| |/
|/|
| |
| |
| |
| |
| | |
* master-sec:
fix protocol checking in sanitization [CVE-2013-1857]
JDOM XXE Protection [CVE-2013-1856]
fix incorrect ^$ usage leading to XSS in sanitize_css [CVE-2013-1855]
stop calling to_sym when building arel nodes [CVE-2013-1854]
|
| | |
|
|\ \
| | |
| | | |
Remove ancient TODOs [ci skip]
|
| | | |
|
|/ /
| |
| |
| |
| | |
These tests should be in inheritance_test.rb since its testing a
feature which is implemented in inheritance.rb
|
| |
| |
| |
| |
| |
| |
| |
| | |
Closes #8079.
I had to rework some of the tests because the mock allowed any arguments
for `connection.exeucte`. I think this is very dangerous as there could
anything be executed without the tests noticing it.
|
| |
| |
| |
| |
| |
| | |
"utf8mb4"
Please, see rationale in the included CHANGELOG patch.
|
| |
| |
| |
| |
| |
| |
| |
| | |
PR #5210 added a Friendship model to illustrate a bug, but in doing so
created a confusing structure because both belongs_to declarations in
Friendship referred to the same side of the join. The new structure
maintains the integrity of the bug test while changing the follower
relationship to be more useful for other testing.
|
| |
| |
| |
| |
| | |
the primary key on an association will make sure that the corresponding
counter on the association is changed properly. Fixes #9722.
|
| | |
|
|\ \
| | |
| | |
| | |
| | | |
senny/9712_option_to_turn_references_deprecation_off
make it possible to disable implicit join references.
|
| | |
| | |
| | |
| | | |
Closes #9712.
|
|/ /
| |
| |
| |
| |
| |
| |
| | |
This reimplements the behaviour of Rails 3, as I couldn't see why we
shouldn't cache the object, and @alindeman had a good use case for
caching it:
https://github.com/rails/rails/commit/c86a32d7451c5d901620ac58630460915292f88b#commitcomment-2784312
|