cartridge-springdata
cartridge-springdata copied to clipboard
Spring Data Tarantool
# Problem statement Currently, there are some cases when the user needs to have the `bucket_id` field in mind and specify either a `null` or the right value for it...
Need to add tests on cases: - [ ] TarantoolTemplate.save with custom bucket ID - [ ] TarantoolTemplate.select with receiving the custom bucket ID - [ ] TarantoolTemplate.update with custom...
Please support PagingAndSortingRepository#findAll(Pageable pageable) operation. https://github.com/tarantool/cartridge-springdata/blob/master/src/main/java/org/springframework/data/tarantool/repository/support/SimpleTarantoolRepository.java#L45
We need to automate source code security scan to quickly fix CVEs. - [ ] Choose a tool - [ ] Add CI step - [ ] Prevent merge source...
Right now we don't get to return a single array without additional wrapping. ```java @Test public void test_array_shouldCalledSuccessfully_byDomainType_withTuple() { //given SimpleArray expected = SimpleArray.builder() .testId(null) .testBoolean(true) .testString("abc") .testInteger(123) .testDouble(1.23) .build();...
```java public Optional updateCrossReferences(long code, List innerObjects, LocalDateTime creationDateTime, final Map headers) { Map credentials = prepareTdgCredentials(headers); var args = new HashMap(); args.put("index", "code_index"); args.put("value", code); args.put("innerObjects", innerObjects); args.put("creationDateTime", creationDateTime);...
Currently, nested structures may be passed only as maps (despite whether the structure is a simple object or an entity). This may be not efficient in case if the structures...
The connector normally writes Double data of `0.0` or` 0`, but there is a problem to read it back. Probably _cartridge-java_ converts the number `0.0` from **Tarantool** to `Integer`, and...