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
Include other cols in the task.
The text was updated successfully, but these errors were encountered:
This is actually hard to do, since the current code applies a distinct count first and then runs attrdedup
Sorry, something went wrong.
Hm. Could we rewrite the initial count distinct query as a group by?
e.g. SELECT name, first(col1), first(col2), ... FROM t GROUP BY name
SELECT name, first(col1), first(col2), ... FROM t GROUP BY name
This requires spark SQL to have a first aggregate, or some other way of getting a value out of the group.
first
sjyk
No branches or pull requests
Include other cols in the task.
The text was updated successfully, but these errors were encountered: