Jacques Nadeau

Results 103 comments of Jacques Nadeau

I'd definitely crib [the tests](https://github.com/dremio/dremio-oss/blob/master/sabot/kernel/src/test/java/com/dremio/BaseDecimalFunctionTests.java#L40) from Dremio that are easy to repurpose. The scale/precision output compromises are always the key pain points when working with Decimal. Having good coverage of...

My casual observation while working on Apache Calcite Bug: Static inner class used as the property type => immutables treated the property as required ``` import Foo; import org.immutables.value.Value; import...

I've also seen a variation of this problem which is more similar to the one referenced above. In this situation (where module 1 and module 2 are different compilation units)...

+1 on the addition of this functionality. Having to repeat 5 properties on every value object just to rename the immutable class name (required when you have several layers of...

@jamesstarr, can you rebase this on master?

Ugh, we didn't realize that this hadn't been merged. We've been using the representations here with multiple customers for the last six months using the annotations and formats above so...

@julianhyde, would love your thoughts on this as you know more than anybody on these things. **Oracle**: SELECT TIMESTAMP '2017-03-12 0:00:00 US/Pacific' + INTERVAL '1' HOUR FROM DUAL 2017-03-12 01:00:00...

This also breaks client/wire compatibility. In previous discussions, we said that we would avoid breaking compatibility. If you proceed with this, you'll need to add a compatibility layer in the...

It seems error-prone/dangerous to change the wire protocol for something that will never be sent on the wire.