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 below piece of code when run on a spark 3 cluster
colName = "count" upperBound = 348113L numPartitions = 10 lowerBound = 0L
fails with File "", line 2 upperBound = 348113L ^ SyntaxError: invalid syntax_
Below is the correct code colName = "count" upperBound = 348113 numPartitions = 10 lowerBound = 0
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The below piece of code when run on a spark 3 cluster
in python
colName = "count"
upperBound = 348113L
numPartitions = 10
lowerBound = 0L
fails with File "", line 2
upperBound = 348113L
^
SyntaxError: invalid syntax_
Below is the correct code
colName = "count"
upperBound = 348113
numPartitions = 10
lowerBound = 0
The text was updated successfully, but these errors were encountered: