teragrep / pth_10

Data Processing Language (DPL) translator for Apache Spark
GNU Affero General Public License v3.0
0 stars 6 forks source link

eval does not allow more than one statement per command #212

Closed eemhu closed 4 months ago

eemhu commented 7 months ago

Describe the bug | eval a = 1, b = 2 does not work Expected behavior Should produce column a with value 1 and column b with value 2. Workaround is to split it into two commands: | eval a = 1 | eval b = 2

How to reproduce Run the command mentioned above.

Screenshots

Software version pth_10 4.17.0

Desktop (please complete the following information if relevant):

Additional context Might require parser fixes? Ignores any commands given after | eval a=1,b=2 | eval b=2 ignores the second command