Re: select($("transactionId)) : cannot find symbol symbol: method $(java.lang.String)

2022-02-14 Thread Francesco Guardiani
Yep that should do it, perhaps are you willing to contribute to that docs page adding the import? :) On Mon, Feb 14, 2022 at 4:34 PM HG wrote: > The static was missing  > > import static org.apache.flink.table.api.Expressions.*; > > > > > Op ma 14 feb. 2022 om 15:45 schreef Francesco

Re: select($("transactionId)) : cannot find symbol symbol: method $(java.lang.String)

2022-02-14 Thread HG
The static was missing  import static org.apache.flink.table.api.Expressions.*; Op ma 14 feb. 2022 om 15:45 schreef Francesco Guardiani < france...@ververica.com>: > > symbol: method $(java.lang.String) > > location: class esl.job.cag.verwerkingstijden.CagVerwerkingsTijden > > What

Re: select($("transactionId)) : cannot find symbol symbol: method $(java.lang.String)

2022-02-14 Thread HG
That's the main function. I have no idea what imports are missing. I am able to use the SQL API for the table. When I switch to .select (()) where(()) groupBy(()) I get this error. On Mon, Feb 14, 2022, 15:45 Francesco Guardiani wrote: > > symbol: method $(java.lang.String) > >

Re: select($("transactionId)) : cannot find symbol symbol: method $(java.lang.String)

2022-02-14 Thread Francesco Guardiani
> symbol: method $(java.lang.String) > location: class esl.job.cag.verwerkingstijden.CagVerwerkingsTijden What is esl.job.cag.verwerkingstijden.CagVerwerkingsTijden? Sounds like a bad import? Also, have you checked you have Flink deps aligned? On Mon, Feb 14, 2022 at 3:17 PM HG wrote: > >

select($("transactionId)) : cannot find symbol symbol: method $(java.lang.String)

2022-02-14 Thread HG
Hi, When I do : Table counts = t .groupBy($("transactionId")) .select($("transactionId"), $("handlingTime").sum().as("summedhandlingTime")); The code below fails with : cannot find symbol .select($("transactionId"),