Skip to content

Commit

Permalink
Merge branch 'release-0.2.0' into feat/daniel-legacy-report-view-1396
Browse files Browse the repository at this point in the history
  • Loading branch information
dhaselhan authored Dec 19, 2024
2 parents d10b9fe + 2dca338 commit 60b16dd
Showing 1 changed file with 11 additions and 7 deletions.
18 changes: 11 additions & 7 deletions backend/lcfs/web/api/fuel_supply/repo.py
Original file line number Diff line number Diff line change
Expand Up @@ -443,20 +443,23 @@ async def get_effective_fuel_supplies(
query = (
select(FuelSupply)
.options(
# Use joinedload for scalar relationships
joinedload(FuelSupply.fuel_code).options(
joinedload(FuelCode.fuel_code_status),
joinedload(FuelCode.fuel_code_prefix),
# Use selectinload for collections
selectinload(FuelSupply.fuel_code).options(
selectinload(FuelCode.fuel_code_status),
selectinload(FuelCode.fuel_code_prefix),
),
joinedload(FuelSupply.fuel_category).options(
joinedload(FuelCategory.target_carbon_intensities),
joinedload(FuelCategory.energy_effectiveness_ratio),
# Use selectinload for one-to-many relationships
selectinload(FuelSupply.fuel_category).options(
selectinload(FuelCategory.target_carbon_intensities),
selectinload(FuelCategory.energy_effectiveness_ratio),
),
# Use joinedload for many-to-one relationships
joinedload(FuelSupply.fuel_type).options(
joinedload(FuelType.energy_density),
joinedload(FuelType.additional_carbon_intensity),
joinedload(FuelType.energy_effectiveness_ratio),
),
# Use joinedload for single relationships
joinedload(FuelSupply.provision_of_the_act),
selectinload(FuelSupply.end_use_type),
)
Expand All @@ -467,6 +470,7 @@ async def get_effective_fuel_supplies(
FuelSupply.version == valid_fuel_supplies_subq.c.max_version,
user_type_priority == valid_fuel_supplies_subq.c.max_role_priority,
),
isouter=False # Explicit inner join
)
.order_by(FuelSupply.create_date.asc())
)
Expand Down

0 comments on commit 60b16dd

Please sign in to comment.