We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The quoting options in source-configuration as well as overwriting values in table-config are being ignored.
sources: - name: TEST quoting: database: true schema: true identifier: true schema: TEST tables: - name: order identifier: order quoting: identifier: true
The following query gets generated:
Select "id" as original_order_id from TEST.order
The text was updated successfully, but these errors were encountered:
hello everybody :) we also just stumbled across the same problem with our "sources". Is there any prospect of a solution here?
Sorry, something went wrong.
I found at least a workaround: you can manually include quotes for sources in yaml like this:
tables: - name: '"a_SALE_ORDER"'
thanks for the hint! :) We got it working like this
tables: - name: WBS_SAP_ZUO identifier: '"tbl_WBS_SAP_ZUO"'
tglunde
No branches or pull requests
The quoting options in source-configuration as well as overwriting values in table-config are being ignored.
The following query gets generated:
Select "id" as original_order_id from TEST.order
The text was updated successfully, but these errors were encountered: