diff options
author | Ryuta Kamizono <kamipo@gmail.com> | 2018-01-29 08:34:33 +0900 |
---|---|---|
committer | Ryuta Kamizono <kamipo@gmail.com> | 2018-01-29 09:24:14 +0900 |
commit | 159b21b59dba120e58eeb8bff89b9d322e720c44 (patch) | |
tree | 4961855b5e5d01f0dd9332869f94539b81422caa /activerecord/test/fixtures | |
parent | 6b8c161fc2cabdadd33826d21f9bd099041b8069 (diff) | |
download | rails-159b21b59dba120e58eeb8bff89b9d322e720c44.tar.gz rails-159b21b59dba120e58eeb8bff89b9d322e720c44.tar.bz2 rails-159b21b59dba120e58eeb8bff89b9d322e720c44.zip |
Fix expanding an array of `composed_of` objects which have multiple mappings
Follow up of #31724.
If `composed_of` objects have multiple mappings, array predicate handler
can not correctly handle the expanded condition.
We need to handle it like polymorphic association objects.
Diffstat (limited to 'activerecord/test/fixtures')
-rw-r--r-- | activerecord/test/fixtures/customers.yml | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/activerecord/test/fixtures/customers.yml b/activerecord/test/fixtures/customers.yml index 0399ff83b9..7d6c1366d0 100644 --- a/activerecord/test/fixtures/customers.yml +++ b/activerecord/test/fixtures/customers.yml @@ -23,4 +23,13 @@ barney: address_street: Quiet Road address_city: Peaceful Town address_country: Tranquil Land - gps_location: NULL
\ No newline at end of file + gps_location: NULL + +mary: + id: 4 + name: Mary + balance: 1 + address_street: Funny Street + address_city: Peaceful Town + address_country: Nation Land + gps_location: NULL |