tarantool-module icon indicating copy to clipboard operation
tarantool-module copied to clipboard

Tarantool Rust SDK

Results 8 tarantool-module issues
Sort by recently updated
recently updated
newest added

I see no reasons for space to be non-copyable.

I want to send data from any rust thread to fiber in the tarantool thread. But the coio channel works only in the tarantool thread. Right? I am trying to...

async

```(SQL) CREATE SEQUENCE serial_01 CYCLE; SELECT nextval('serial_01'); DROP SEQUENCE serial_01; ``` ``` Tarantool error: DropSequence: Can't drop sequence 'serial_01': the sequence has data ```

This parch adds `NP` (next prefix) and `PP` (previous prefix) variants to `IteratorType` enum, matching the new Tarantool iterators for memtx tree indexes. These iterators perform prefix-based string comparison on...

So, i don't understant why is this works fine: ```rust #[proc] pub fn get() -> Result ``` But this is produced compile error: ```rust #[proc] pub fn get_batch() -> Result...