Skip to content

Commit

Permalink
fix: update 쿼리 tx read-only 설정 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
wjdtkdgns committed Aug 13, 2024
1 parent 6f22b45 commit 4b391c9
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ import java.time.LocalDateTime

@Transactional(readOnly = true)
interface ReportHistoryQRepository {
@Transactional
fun updateAllCreatedAt(createdAt: LocalDateTime): Long
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ import java.time.LocalDateTime

@Transactional(readOnly = true)
interface ReportResultQRepository {
@Transactional
fun updateAllCreatedAt(createdAt: LocalDateTime): Long
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ interface UserStatusHistoryQRepository {

fun getUidByToStatusId(toStatusId: Long): List<Long>

@Transactional
fun updateAllCreatedAt(createdAt: LocalDateTime): Long
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ import java.time.LocalDateTime

@Transactional(readOnly = true)
interface UserStatusQRepository {
@Transactional
fun updateAllCreatedAt(createdAt: LocalDateTime): Long
}

Expand Down

0 comments on commit 4b391c9

Please sign in to comment.