| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
| |
|
|\
| |
| | |
Restore columns dropped by hstore test
|
| |
| |
| |
| |
| | |
Disabling the hstore extension during testing created order dependent
test failures.
|
|\ \
| | |
| | | |
respect auto_increment in rename_column for mysql
|
| | | |
|
| | | |
|
|/ /
| |
| |
| |
| |
| |
| |
| | |
Adds support for algorithm option in MySQL indexes
Moves USING and algorithm options upstream
The syntax is still specific to the Adapter, so the actual executed string happens
in the corresponding adapter
|
| | |
|
| |
| |
| |
| | |
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
|