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
What is the bug? Assuming the tableA contains fields id, uid, a_name and the tableB contains id, b_name. PPL
id
uid
a_name
b_name
source = tableA | lookup tableB id as uid replace b_name as a_name
will failed with [AMBIGUOUS_REFERENCE] Reference id is ambiguous
[AMBIGUOUS_REFERENCE] Reference
is ambiguous
The text was updated successfully, but these errors were encountered:
The current workaround could be
source = tableA | rename id as a_id | lookup tableB id as uid replace b_name as a_name | rename a_id as id
Sorry, something went wrong.
No branches or pull requests
What is the bug?
Assuming the tableA contains fields
id
,uid
,a_name
and the tableB containsid
,b_name
. PPLwill failed with
[AMBIGUOUS_REFERENCE] Reference
idis ambiguous
The text was updated successfully, but these errors were encountered: