fix: sceneapi error

remove fetchjoin
This commit is contained in:
2025-12-30 11:07:04 +09:00
parent 770f28647e
commit 98f5a6fa84
2 changed files with 1 additions and 3 deletions

View File

@@ -67,7 +67,6 @@ public class MapInkx5kRepositoryImpl extends QuerydslRepositorySupport
mapInkx5kEntity.useInference))
.from(mapInkx5kEntity)
.innerJoin(mapInkx5kEntity.mapInkx50k, mapInkx50kEntity)
.fetchJoin()
.where(searchUseInference(useInference), searchValueMapCdNm(searchVal))
.offset(pageable.getOffset())
.limit(pageable.getPageSize())
@@ -79,7 +78,6 @@ public class MapInkx5kRepositoryImpl extends QuerydslRepositorySupport
.select(mapInkx5kEntity.count())
.from(mapInkx5kEntity)
.innerJoin(mapInkx5kEntity.mapInkx50k, mapInkx50kEntity)
.fetchJoin()
.where(searchUseInference(useInference), searchValueMapCdNm(searchVal))
.fetchOne();