Re: How to use IntelliJ debug code generated by janino?

2022-12-12 Thread Zou Dan
w could I configure the debug dir as the "Generated > Source Root"? > "2. Mark the debug dir you configured in step 1 as the "Generated Source > Root". > > Zou Dan 于2022年12月12日周一 15:33写道: > >> Hi wangguangyuan, the picture in your email are not disp

Re: How to use IntelliJ debug code generated by janino?

2022-12-11 Thread Zou Dan
Hi wangguangyuan, the picture in your email are not displayed normally. And I used to debug the generated code in IDEA follow the steps below: 1. Add two debug configurations: "-Dorg.codehaus.janino.source_debugging.enable=true" and "-Dorg.codehaus.janino.source_debugging.dir=/your_own_path" 2.

Apply contributor permission

2022-09-04 Thread Zou Dan
Hi community, I want to contribute to Apache Calcite. Could you please add contributor permission to me? My JIRA ID is FrankZou, Thanks. Best, Dan Zou

Re: Different behavior bewteen '>' and '='

2022-01-12 Thread Zou Dan
dering-based comparisons such as ‘>’. Consider: given a DATE value d, and >> a TIMESTAMP value t, it is reasonable to ask ‘is t > d?’ but less >> reasonable to ask ‘does t = d?' >> >>> On Jan 10, 2022, at 6:35 PM, Zou Dan wrote: >>> >>>

Different behavior bewteen '>' and '='

2022-01-10 Thread Zou Dan
Hi community, I recently ran into a problem that when we disable type coercion by SqlValidator#setEnableTypeCoercion(false), there will be two different behaviors between '>' and '=': 1. '>' between character and numeric (e.g. '1' > 1), the character will be implicitly converted to numeric 2.