- Dec 09, 2024
-
-
Kurdakov Alexander authored
Introduce new parameters for alter system: - vdbe_max_steps - vtable_max_rows
-
- Dec 05, 2024
-
-
Erik Khamitov authored
-
- Dec 02, 2024
-
-
Maksim Kaitmazian authored
Previously, LuaValue was used for deserializing msgpack data. It is marked with #[serde(untagged)] attribute, meaning that the enum is deserializaed by probing each variant in order unless one succeeds. It turned out, that this can cause unexpected type convertions due to the order of variants. For example, msgpack integer value was deserialized into LuaValue::Double, because this variant comes before LuaValue::Integer and integer values can be represented as floats. This commit resolves this issue by configuring LuaValue to be deserialized as rmpv::Value using #[serde(try_from)] attribute.
-
- Nov 29, 2024
-
-
Andrey Strochuk authored
-
- Nov 27, 2024
-
-
Erik Khamitov authored
-
- Nov 25, 2024
-
-
Erik Khamitov authored
-
- Nov 21, 2024
-
-
-
Dmitry Rodionov authored
-
- Nov 14, 2024
-
-
EmirVildanov authored
-
Maksim Kaitmazian authored
-
- Oct 16, 2024
-
-
- Oct 07, 2024
-
-
- update sbroad submodule to commit with fix
-
- Oct 03, 2024
-
-
Maksim Kaitmazian authored
-
- Oct 01, 2024
-
-
Maksim Kaitmazian authored
Note that after this merge request, we no longer validate whether the format of the created object matches with the schema. Consequently, we do not suppress errors if formats match anymore. Before: ```sql CREATE USER u WITH PASSWORD 'Passw0rd' 1 CREATE USER u WITH PASSWORD 'Passw0rd' 0 CREATE USER u WITH PASSWORD 'DifferentPassw0rd' error: user already exists with different auth method ``` Now: ```sql CREATE USER u WITH PASSWORD 'Passw0rd' 1 CREATE USER u WITH PASSWORD 'Passw0rd' error: user u already exists CREATE USER u WITH PASSWORD 'DifferentPassw0rd' error: user u already exists CREATE USER IF NOT EXISTS u WITH PASSWORD 'DifferentPassw0rd' 0 ```
-
Arseniy Volynets authored
-
- Sep 30, 2024
-
-
Вартан Бабаян authored
-
- Sep 27, 2024
-
-
Вартан Бабаян authored
-
Arseniy Volynets authored
-
Arseniy Volynets authored
- In sql tests (test_limit) we encountered a bug, when two different queries had the same hash for executable subtree. We marked teset as xfail. - The bug was caused by wrong calculation of hash in sbroad. This was solved. - Update sbroad submodule to commit with fix - Remove xfail mark from test
-
- Sep 24, 2024
-
-
Denis Smirnov authored
-
Arseniy Volynets authored
-
Вартан Бабаян authored
This reverts commit 2924f112.
-
Вартан Бабаян authored
-
Arseniy Volynets authored
-
Arseniy Volynets authored
-
- Sep 23, 2024
-
-
Arseniy Volynets authored
-
- Sep 20, 2024
-
-
Closes #664
-
- Sep 13, 2024
-
-
Andrey Strochuk authored
-
Kurdakov Alexander authored
Changed sbroad vshard related traits and it's capabilities about working with several vshard groups
-
- Sep 12, 2024
-
-
Maksim Kaitmazian authored
This reverts commit d7e93cfc.
-
- Sep 11, 2024
-
-
Maksim Kaitmazian authored
-
- Sep 10, 2024
-
-
-
Denis Smirnov authored
1. A better VDBE caching was implemented for local SQL. 2. Local SQL is called via C API rather then Lua. 3. A new prepare-unprepare fiber added to manage SQL statement cache.
-
- Sep 03, 2024
-
-
- Aug 26, 2024
-
-
Feodor Alexandrov authored
feat: support ALTER SYSTEM. It allows to change whitelisted properties from _pico_property table. Currently, changes affect all tiers. Specifying tier will result in an error. Co-Authored-by:
Dmitry Rodionov <d.rodionov@picodata.io> Co-Authored-by:
Emir Vildanov <e.vildanov@picodata.io>
-
- update sbroad submodule to commit with new normalization rules - update integration tests
-
- Aug 22, 2024
-
-
- Aug 12, 2024
-
-
Maksim Kaitmazian authored
-
- Jul 23, 2024
-
-
- Jul 13, 2024
-
-
Kurdakov Alexander authored
-