-
Notifications
You must be signed in to change notification settings - Fork 123
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[CBRD-25097] PL/CSQL phase-0 internal release (#4825)
http://jira.cubrid.org/browse/CBRD-25097 This PR includes PL/CSQL project's phase-0 implementations (feature/plcsql). After this PR is merged in the develop branch, the internal release is considered completed once QA testing is completed for the following features that must be satisfied in phase-0. The features are as follows: - PL/CSQL program compiler: The PL/CSQL compiler parses the program according to the PL/CSQL grammar defined in the issue and then includes a module that communicates with the DB server for information needed in CUBRID SQL parts such as Static SQL. - Support PL/CSQL in DDL (CREATE PROCEDURE/FUNCTION) statement: In CREATE PROCEDURE/FUNCTION statement, stored routine can be written between BEGIN ... END. The stored routine body is sent to the PL/CSQL compiler and it is registered if compiling succeed. - Support TCL (COMMIT/ROLLBACK) in stored routine: COMMIT and ROLLBACK have been ignored in Java SP. In this change, they are supported if pl_transaction_control parameter is on, which is introduced for backward compatibility. - Support DBMS_OUTPUT built-in functions: Yet package is not added in CUBRID. But, DBMS_OUTPUT is used frequently to debug or log when users write procedure/function.
- Loading branch information
Showing
365 changed files
with
31,102 additions
and
1,810 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
@echo off | ||
|
||
@rem | ||
@rem | ||
@rem Copyright 2016 CUBRID Corporation | ||
@rem | ||
@rem Licensed under the Apache License, Version 2.0 (the "License"); | ||
@rem you may not use this file except in compliance with the License. | ||
@rem You may obtain a copy of the License at | ||
@rem | ||
@rem https://www.apache.org/licenses/LICENSE-2.0 | ||
@rem | ||
@rem Unless required by applicable law or agreed to in writing, software | ||
@rem distributed under the License is distributed on an "AS IS" BASIS, | ||
@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
@rem See the License for the specific language governing permissions and | ||
@rem limitations under the License. | ||
@rem |
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
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
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
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
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
Oops, something went wrong.