"README.md" did not exist on "6bae18e0187a311b80abab0b7c02a9fbd144f34e"
- Jul 28, 2022
-
-
Denis Smirnov authored
1. When we build a configuration cache and face a table without a sharding column, simply skip this table (do not exit with error). 2. Make "space not found" error more debug firendly 3. Rename "broken test" to "ddl"
-
-
- Jul 27, 2022
-
-
Denis Smirnov authored
BREAKING CHANGE: reqiures Picodata Tarantool with a string quoting fix (e9360c989129a755b86486c7bcd6e2d21a078e22).
-
Denis Smirnov authored
We should not expose a sharding column (i.e. "bucket_id") for any parts of the join if the user doesn't mention it explicitly in projection. Otherwise we receive incorrect query results.
-
- Jul 26, 2022
-
-
Denis Smirnov authored
The error was produced by the assumption that (2, 1) > (1, 2) is equivalent to (2 > 1) and (1 > 2). That assumption was incorrect, so we don't merge AND chains for any operators other than Eq and NotEq.
-
Denis Smirnov authored
-
- Jul 25, 2022
-
-
Denis Smirnov authored
BREAKING CHANGE: dispatch_query() wraps result with a tuple of a single element.
-
Denis Smirnov authored
-
- Jul 22, 2022
-
-
Denis Smirnov authored
-
Denis Smirnov authored
We made a wrong enumeration for the new columns in projection when a system sharding column ("bucket_id") was located somewhere except the last position in the relation schema. Fixed.
-
- Jul 21, 2022
-
-
Denis Smirnov authored
-
Denis Smirnov authored
We should not panic if we try to clear the configuration while holding a mutable borrow on a runtime.
-
Denis Smirnov authored
Previously we didn't take into account the fact, that prepared statements act much alike OS descriptors. Though their internal representation is located in the instance-wide memory of Tarantool, we need to call "prepare" method to make its id from the global cache for every new session. If the statement was not found in the cache, then "prepare" compiles it and stores back to the cache.
-
- Jul 20, 2022
-
-
Denis Smirnov authored
-
Denis Smirnov authored
-
-
Denis Smirnov authored
-
- Jul 18, 2022
-
-
Denis Smirnov authored
-
Denis Smirnov authored
-
- Jul 16, 2022
-
-
Denis Smirnov authored
-
- Jul 15, 2022
-
-
Denis Smirnov authored
-
-
Denis Smirnov authored
-
Denis Smirnov authored
-
Denis Smirnov authored
BREAKING_CHANGE: sbroad works only with a current version of tarantool
-
Denis Smirnov authored
Separate testing steps into lint, unit, integration and bench.
-
Denis Smirnov authored
-
Denis Smirnov authored
Previously we failed to deserialize decimal
-
Denis Smirnov authored
BREAKING CHANGE: now we need sbroad library on the storages as well
-
Denis Smirnov authored
BREAKING CHANGE: rename execute_query to dispatch_query The main reason is that we'll soon need not only a coordinator runtime, but also a new storage runtime as well. Current names can confuse us in future. Also add an ability to evaluate an arbitrary eviction funtion for the LRU cache (on the storage side we'll need it to flush prepared statements from the Tarantool cache when our LRU cache evicts the one). LRU cache was moved from within the cache folder into the engine. Router logic was moved to a separate file in the cartridge module.
-
- Jul 05, 2022
-
-
Дмитрий Кольцов authored
picodata features enables Picodata Tarantool fork functionality Schema enables functionality needed to operate spaces metadata
-
Дмитрий Кольцов authored
This reverts commit d9b2f822. Cargo.lock is now included in repo, so no need to fix version to get reproducible build
-
Дмитрий Кольцов authored
We want to get reproducible builds. Cargo.lock does exactly this. On the start of the development we were following the rule that "libraries does not include cargo.lock in git, binary does". However we misinterpreted the role of Sbroad. It is built as a "cdylib" so we should treat it as an executable and include cargo.lock
-
Дмитрий Кольцов authored
-
- Jul 01, 2022
-
-
Alexey Protsenko authored
-
- Jun 29, 2022
-
-
Дмитрий Кольцов authored
Closes #202
-
- Jun 27, 2022
-
-
Дмитрий Кольцов authored
Closes #183
-
- Jun 21, 2022
-
-
Denis Smirnov authored
Now coordinator dispatches SQL patterns with separated parameters. It would help us to cache patterns on the segments as prepared statements one day and skip SQL parsing. Also we have faced a Tarantool bug https://github.com/tarantool/tarantool/issues/7283 and made a hot fix in the Picodata fork. As a result we have also migrated sbroad CI to our fork.
-
- Jun 14, 2022
-
-
Denis Smirnov authored
-
Denis Smirnov authored
We migrate from the `decimal` crate (used decQuad from decNumber to store the numbers) to Tarantool internal types provided by the Rust module. The reason was to make IR numeric values easy serializable to the query parameters (a part of the executor refactoring). The problem with Tarantool internal types is that the internal decNumber representation is provided by Tarantool ABI. So we always need Tarantool itself to use the types. It is ok for integration tests, but for unit tests with `cargo test` it is a problem. As a solution we have implemented some mocking infrastructure to build a static library based on the Tarantool decNumber, MsgPuck and some wrappers over them both to make unit tests work.
-