[BUG] 구글 캘린더 삭제 일정 동기화 누락 및 공휴일 중복 버그 수정 - #290
Merged
Merged
Conversation
|
Caution Review failedThe pull request is closed. ℹ️ Recent review info⚙️ Run configurationConfiguration used: Organization UI Review profile: CHILL Plan: Pro Plus Run ID: 📒 Files selected for processing (2)
📝 WalkthroughWalkthroughChangesCalendar and holiday data integrity
✨ Finishing Touches📝 Generate docstrings
🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
🔗 이슈 번호
#️⃣ 기능 설명
cancelled)된 일정이 트라이나 서버로 동기화되지 않아 유령 일정으로 남는 문제를 해결했습니다.📌 작업 내용
GoogleCalendarClient.java: 증분 동기화(updatedMin) 호출 시 구글 API가 삭제된 일정을 응답에서 제외하지 않도록timeMin,timeMax파라미터를 쿼리에서 제거V20__add_unique_index_for_holiday.sql: 기존 중복 공휴일 데이터를 초기화하고, 공휴일(HOLIDAY)의external_event_id에 Unique Index를 생성하여 DB 레벨에서 중복 저장 완벽 방어 적용✅ 체크리스트
📸 스크린샷 (선택)
변경 사항
updatedMin만 사용하도록 변경했습니다.timeMin,timeMax,orderBy=startTime을 유지합니다.external_event_id에 공휴일 전용 Unique Index를 추가했습니다.변경 이유
Breaking Changes
테스트