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
Sometimes we want to get query the source JDBC database just to fetch the schema. In this case we need to ensure the query doesn't return any records.
The schema query is the same as data query, just with contradicting WHERE condition.
Create a schema query for the Sql Query generator.
--
Add either WHERE 0=1 or AND 0=1 for the data query to get the schema query.
WHERE 0=1
AND 0=1
The text was updated successfully, but these errors were encountered:
#510 Add SQL schema query generator.
e28db14
#510 Use the SQL schema query generator when adding metadata to data …
b04783d
…frames.
4febbfc
977f5a9
Successfully merging a pull request may close this issue.
Background
Sometimes we want to get query the source JDBC database just to fetch the schema. In this case we need to ensure the query doesn't return any records.
The schema query is the same as data query, just with contradicting WHERE condition.
Feature
Create a schema query for the Sql Query generator.
Example [Optional]
--
Proposed Solution [Optional]
Add either
WHERE 0=1
orAND 0=1
for the data query to get the schema query.The text was updated successfully, but these errors were encountered: