@@ -1340,6 +1340,11 @@ def owned = where(owner: proxy_association.owner)
1340
1340
t . integer :user_id
1341
1341
end
1342
1342
1343
+ temporary_table :prefaces do |t |
1344
+ t . integer :book_id
1345
+ t . integer :user_id
1346
+ end
1347
+
1343
1348
temporary_model :user do
1344
1349
has_many :books
1345
1350
has_many :coauthorships
@@ -1368,33 +1373,36 @@ def owned = where(owner: proxy_association.owner)
1368
1373
belongs_to :user
1369
1374
end
1370
1375
1376
+ temporary_model :preface do
1377
+ belongs_to :book
1378
+ belongs_to :user
1379
+ end
1380
+
1371
1381
temporary_model :book do
1372
- # the primary author of the book
1373
1382
belongs_to :author , class_name : 'User' , foreign_key : 'author_id' , optional : true
1374
1383
1375
- # coauthors of the book via a join table
1376
1384
has_many :coauthorships
1377
1385
has_many :coauthors , through : :coauthorships , source : :user
1378
1386
1379
- # editors for the book via a join table
1380
- has_many :edits
1381
- has_many :editors , through : :edits , source : :user
1387
+ has_many :forewords
1388
+ has_many :foreworders , through : :forewords , source : :user
1389
+
1390
+ has_many :prefaces
1391
+ has_many :prefacers , through : :prefaces , source : :user
1382
1392
1383
- # illustrators for the book via a join table
1384
1393
has_many :illustrations
1385
1394
has_many :illustrators , through : :illustrations , source : :user
1386
1395
1387
- # foreword writers for the book via a join table
1388
- has_many :forewords
1389
- has_many :prefacers , through : :forewords , source : :user
1396
+ has_many :edits
1397
+ has_many :editors , through : :edits , source : :user
1390
1398
1391
- # union association for all contributors to the book
1392
- has_many :contributors , class_name : 'User' , union_of : %i[
1399
+ has_many :contributors , -> { distinct } , class_name : 'User' , union_of : %i[
1393
1400
author
1394
1401
coauthors
1395
- editors
1396
- illustrators
1402
+ foreworders
1397
1403
prefacers
1404
+ illustrators
1405
+ editors
1398
1406
]
1399
1407
end
1400
1408
@@ -1405,9 +1413,10 @@ def owned = where(owner: proxy_association.owner)
1405
1413
let ( :book ) {
1406
1414
book = Book . create ( title : 'I, Robot' , author :)
1407
1415
1408
- Edit . create ( user : editor , book :)
1416
+ Foreword . create ( user : author , book :)
1417
+ Preface . create ( user : writer , book :)
1409
1418
Illustration . create ( user : illustrator , book :)
1410
- Foreword . create ( user : writer , book :)
1419
+ Edit . create ( user : editor , book :)
1411
1420
1412
1421
book
1413
1422
}
@@ -1427,7 +1436,7 @@ def owned = where(owner: proxy_association.owner)
1427
1436
it 'should use UNION' do
1428
1437
expect ( book . contributors . to_sql ) . to match_sql <<~SQL . squish
1429
1438
SELECT
1430
- users.*
1439
+ DISTINCT users.*
1431
1440
FROM
1432
1441
users
1433
1442
WHERE
@@ -1460,9 +1469,18 @@ def owned = where(owner: proxy_association.owner)
1460
1469
SELECT
1461
1470
users.id
1462
1471
FROM
1463
- users INNER JOIN edits ON users.id = edits .user_id
1472
+ users INNER JOIN forewords ON users.id = forewords .user_id
1464
1473
WHERE
1465
- edits.book_id = 1
1474
+ forewords.book_id = 1
1475
+ )
1476
+ UNION
1477
+ (
1478
+ SELECT
1479
+ users.id
1480
+ FROM
1481
+ users INNER JOIN prefaces ON users.id = prefaces.user_id
1482
+ WHERE
1483
+ prefaces.book_id = 1
1466
1484
)
1467
1485
UNION
1468
1486
(
@@ -1478,9 +1496,9 @@ def owned = where(owner: proxy_association.owner)
1478
1496
SELECT
1479
1497
users.id
1480
1498
FROM
1481
- users INNER JOIN forewords ON users.id = forewords .user_id
1499
+ users INNER JOIN edits ON users.id = edits .user_id
1482
1500
WHERE
1483
- forewords .book_id = 1
1501
+ edits .book_id = 1
1484
1502
)
1485
1503
) users
1486
1504
)
0 commit comments