| Summary: | Oracle DDL Parser should be case-insensitive to PL/SQL keywords | ||
|---|---|---|---|
| Product: | z_Archived | Reporter: | Mike Norman <michael.norman> |
| Component: | Eclipselink | Assignee: | Mike Norman <michael.norman> |
| Status: | RESOLVED FIXED | QA Contact: | |
| Severity: | normal | ||
| Priority: | P3 | CC: | eclipselink.dbws-inbox |
| Version: | unspecified | ||
| Target Milestone: | --- | ||
| Hardware: | All | ||
| OS: | All | ||
| Whiteboard: | |||
fixed in svn revision 10520:
change Parser's tokenizer to
TOKEN [IGNORE_CASE]: {
<K_A: "A">
| <K_ADD: "ADD">
...
The Eclipselink project has moved to Github: https://github.com/eclipse-ee4j/eclipselink |
Oracle DDL Parser should handle the following: CREATE OR REPLACE PACKAGE TEST_TYPES AS function echo_number (pNumber in number) return number; ... END test_types ; in the same manner as CREATE OR REPLACE PACKAGE TEST_TYPES AS FUNCTION echo_number(PNUMBER in NUMBER) return NUMBER; ... END TEST_TYPES;