We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
불필요하게 join을 활용하는 조회 로직을 개선한다.
3시간
The text was updated successfully, but these errors were encountered:
Optional<OAuthToken> findByMemberId(final Long memberId);
Hibernate: select oauthtoken0_.id as id1_4_, oauthtoken0_.created_at as created_2_4_, oauthtoken0_.updated_at as updated_3_4_, oauthtoken0_.members_id as members_5_4_, oauthtoken0_.refresh_token as refresh_4_4_ from oauth_tokens oauthtoken0_ left outer join members member1_ on oauthtoken0_.members_id=member1_.id where member1_.id=?
Hibernate: select oauthtoken0_.id as id1_4_, oauthtoken0_.created_at as created_2_4_, oauthtoken0_.updated_at as updated_3_4_, oauthtoken0_.members_id as members_5_4_, oauthtoken0_.refresh_token as refresh_4_4_ from oauth_tokens oauthtoken0_ where oauthtoken0_.members_id=?
Sorry, something went wrong.
hyeonic
No branches or pull requests
🤷 구현할 기능
불필요하게 join을 활용하는 조회 로직을 개선한다.
🔨 상세 작업 내용
📄 참고 사항
⏰ 예상 소요 기간
3시간
The text was updated successfully, but these errors were encountered: