[CBRD-24941] slip: revert the use of '%' as the modular operator #5706
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-24941
CUBRID SQL 에서는 % 를 나머지 연산자로 사용할 수 있으나
PL/CSQL 에서는 cursor 속성 ( %found, %notfound, %isopen, %rowcount)과 %type과 %rowtype 이 있기 때문에
%를 나머지 연산자로 사용할 때 파싱 과정에서 문제가 있을 수 있다.
예를 들면, 아래와 같이 변수명이 found 일 때 원래 의도와 달리 커서 속성으로 파싱이 되어 문제를 일으킨다.