Lev Sivashov
Lev Sivashov
Hello. I've been looking through the code of ews-java-api and realized that it doesn't always handle date/time values correctly. Here is an article in EWS documentation that describes how clients...
`.collect(Collectors.toList())` -> `.toList` `.collect(Collectors.toSet())` -> `.toSet` `.collect(Collectors.joining(sep))` -> `.mkString(sep)` `.collect(Collectors.groupingBy(a -> b))` -> `.groupBy(a -> b)` `.collect(Collectors.toMap(t -> key, t -> value))` -> `.toMap(t -> key, t -> value)` What...
It looks like #2607 breaks SQL generation in dynamic queries, because now dynamic queries ignore any decoders defined for embedded classes. **Version**: 4.6.0 **Module**: quill-sql, quill-jdbc Here is a simple...
1) I could not find a way to run Gant scripts with the wrapper. In Grails you can create a Gant script with "create-script" command and then run it without...
Starting from version 5.0, Redis provides a new Stream data type with a bunch of new commands: https://redis.io/topics/streams-intro Do you have any plans for supporting it? I've been playing with...
I'm trying to load a message with `BODY[TEXT]` and `BODY[HEADER]`: ``` imapClient.uidfetch( Set.of(106), FetchDataItemType.UID, new BodyPeekFetchDataItem("TEXT"), new BodyPeekFetchDataItem("HEADER") ) ``` According to the trace logs, everything is fine: ``` 2021-01-06...
Work in progress... If someone wants to review this, it's better to start from `YTDBGremlinEngineTest`.
- Removed `xodus` dependencies; all necessary `xodus` modules copied in this project - Query engine rewritten using Gremlin query language instead of YouTrackDB SQL **Don't merge this yet please.** We...