aiteamutils 0.2.124__tar.gz → 0.2.125__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: aiteamutils
3
- Version: 0.2.124
3
+ Version: 0.2.125
4
4
  Summary: AI Team Utilities
5
5
  Project-URL: Homepage, https://github.com/yourusername/aiteamutils
6
6
  Project-URL: Issues, https://github.com/yourusername/aiteamutils/issues
@@ -448,13 +448,12 @@ async def list_entities(
448
448
  List[Dict[str, Any]]: 쿼리 결과 리스트.
449
449
  """
450
450
  try:
451
- # 조인된 엔티티도 함께 선택
452
- query = select(model, *[join_target for join_target in (explicit_joins or [])])
451
+ query = select(model)
453
452
 
454
453
  # 명시적 조인 적용
455
454
  if explicit_joins:
456
455
  for join_target in explicit_joins:
457
- query = query.outerjoin(join_target) # LEFT OUTER JOIN 적용
456
+ query = query.outerjoin(join_target)
458
457
 
459
458
  # 조인 로딩 적용
460
459
  if loading_joins:
@@ -0,0 +1,2 @@
1
+ """버전 정보"""
2
+ __version__ = "0.2.125"
@@ -1,2 +0,0 @@
1
- """버전 정보"""
2
- __version__ = "0.2.124"
File without changes
File without changes
File without changes