[CBRD-27242] allow unqualified column name to find a column index in a ResultSet - #7712
Merged
Merged
Conversation
…en a qualified name used in the SELECT statement.
✅ TC Merge Gate — Merge AllowedAll TC PRs are merged, closed, or not present. TC Repositories & Branches:
|
🧪 TC Test Environment ReadyCircleCI Testing:
TC Repositories & Branches:
Next Steps:
|
Contributor
Author
|
@greptile 코드 리뷰 해 주세요. |
hyunikn
commented
Aug 14, 2026
Contributor
|
Reviews (1): Last reviewed commit: "allow unqualified column name to find a ..." | Re-trigger Greptile |
Contributor
Author
|
/run all |
hyunikn
marked this pull request as ready for review
August 14, 2026 05:46
Contributor
|
Reviews (2): Last reviewed commit: "minor: comment" | Re-trigger Greptile |
beyondykk9
approved these changes
Aug 14, 2026
Contributor
Author
|
/run all |
1 similar comment
Contributor
Author
|
/run all |
Contributor
Author
|
/run shell |
hyunikn
added a commit
to hyunikn/cubrid
that referenced
this pull request
Aug 18, 2026
… a column index in a ResultSet (CUBRID#7712)
|
✅ TC Branch Finalized for Engine PR was merged. Cleanup Results:
TC base branch is ready for the next PR. |
|
✅ TC Branch Finalized for Engine PR was merged. Cleanup Results:
TC base branch is ready for the next PR. |
hyunikn
added a commit
to hyunikn/cubrid
that referenced
this pull request
Aug 18, 2026
… a column index in a ResultSet (CUBRID#7712)
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.
http://jira.cubrid.org/browse/CBRD-27242
Purpose
서버사이드 JDBC 의 ResultSet.findMethod() 구현에서 (조희 결과에서 컬럼 이름으로 컬럼 인덱스를 찾는 메소드)
사용자가 SLECT query에 컬럼을 T.col 이라고 썼을 때 findMethod() 의 인자로 "col" 을 허용하도록 수정.
현재는 "T.col" 이라고 써야 동작.
(참고: JDBC 구현에서는 반대로 "col" 이라고 써야 동작. "T.col" 이라고 쓰면 에러)