danibs
danibs
## Environment **Liquibase Version**: 4.12.0 **Liquibase Integration & Version**: CLI **Operating System Type & Version**: Ubuntu 20.04 ## Description In file dbchangelog (.xml, .sql, ...) you can use "context" like:...
Hi, in version > 2.6: https://docs.spring.io/spring-data/data-redis/docs/current/reference/html/#new-in-2.6.0 you support [GETEX](https://redis.io/commands/getex/) command that permits (I think) to have a kind of "time to idle" like in EhCache (`ExpiryPolicyBuilder.timeToIdleExpiration`) where the key doesn't...
**Problem to solve** Suppose to have 10 documents and for eachone you must have (for example) the same table. In case you must update the table addling a column for...
Hi Suppose to have: ```json { "descr", "myobj": { "a": "aa1", "b": "bb1" }, "source": { "type": "t1", "myobj": { "a": "aa2", "b": "bb2" } } "dest": { "type": "t2",...
Add some notes
`modifiedCount` should be `long` instead of `Long`. If not: ```java public long getModifiedCount() { return modifiedCount; } ``` could throws exception. **NOTE: The `public int hashCode()` method must to be...
Hi. I'm using `2.17.2` and already resolved my problem with `Date` using this configuration https://github.com/FasterXML/jackson-dataformat-xml/issues/561#issuecomment-2269479434 . Now what I want is to convert: ```xml ``` to the field: ```java @JsonProperty(...