-
Notifications
You must be signed in to change notification settings - Fork 81
Open
Labels
bb converterIssues related to BB converterIssues related to BB converterenhancementNew feature or requestNew feature or request
Description
Category of Bug / Issue
Conversion (Oracle, Snowflake)
Current Behavior
The Bladebridge converter currently does not support converting Oracle outer joins using the "+" operator, here is an example of this:
FROM
EMPLOYEE, BRANCH
WHERE
EMPLOYEE.BRANCH=BRANCH.BRANCH(+)This is documented in the Oracle docs here: https://docs.oracle.com/database/121/SQLRF/queries006.htm#SQLRF52354.
Note that they do not recommend using it either! However Snowflake does support it.
Expected Behavior
This should convert to:
FROM
EMPLOYEE LEFT OUTER JOIN BRANCH ON EMPLOYEE.BRANCH=BRANCH.BRANCHMetadata
Metadata
Assignees
Labels
bb converterIssues related to BB converterIssues related to BB converterenhancementNew feature or requestNew feature or request