-
Notifications
You must be signed in to change notification settings - Fork 29
New issue
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
[CUBRIDQA-1203] Refining execute.c and adding PL/CSQL parsing #669
Merged
hyunikn
merged 13 commits into
CUBRID:develop
from
hyunikn:CUBRIDQA-1203-plcsql-parsing
Dec 15, 2023
Merged
[CUBRIDQA-1203] Refining execute.c and adding PL/CSQL parsing #669
hyunikn
merged 13 commits into
CUBRID:develop
from
hyunikn:CUBRIDQA-1203-plcsql-parsing
Dec 15, 2023
Conversation
This file contains 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
…ubmodule addition (2) add .gitignore to ignore generated binary files ccqt and execute
. use memmove instead of two memcopy's . disallow -- holdcas on/off (only allow --+ holdcas on/off) . remove unneccessary state variable 'iscallwithoutvalue' . correct a typo: 'linelenght' --> 'linelength'
. simplify iscomment() function . simplify endwith() function and rename it to endswithsemicolon() . rename char_cmp() to startswith() . add startswithCI() : CI for Case Insensitive . use stack area instead of heap for str_tmp, and rename str_tmp to sql_buf . rename linelength to sql_len . trim input string line at the start of every iteration of the while loop in readFile() . to avoid repeated trimming afterwards . exit when whole sql line overflows str_buf . avoid the repeated call of trimline(p) in formatplan() function
. it is copied from CUBRID's csql_support.c
kwonhoil
approved these changes
Dec 15, 2023
ssihil
approved these changes
Dec 15, 2023
tw-kang
approved these changes
Dec 15, 2023
ssihil
added a commit
to ssihil/cubrid-testtools
that referenced
this pull request
Dec 20, 2023
…tin%', and reflects changes in CUBRID#669
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/CUBRIDQA-1203