- Jun 05, 2024
-
-
Georgy Moshkin authored
Previously when running `pico.sql [[ create table foo ]]` we would get this output: ``` --- - null - "sbroad: rule parsing error: --> 1:9\n |\n1 | create table foo \n | ^---\n \ |\n = expected Unique" ... ``` But now the output will be: ``` --- - null - |+ sbroad: rule parsing error: --> 1:9 | 1 | create table foo | ^--- | = expected Unique ... ```
-
Bogdan Berezovskiy authored
-
- Jun 04, 2024
-
-
Dmitry Rodionov authored
-
Dmitry Rodionov authored
These tests are quire lengthy and are useful only when we changed the patchset. So run them always on master, and if `certification_patches` dir contains any changes. Otherwise use `when: manual`
-
-
Bogdan Berezovskiy authored
-
-
- Jun 03, 2024
-
-
godzie44 authored
-
- May 31, 2024
-
-
Егор Ивков authored
this fixes the following bug: ``` picodata run --data-dir tmp/i1/ C> invalid socket path: tmp/i1//admin.sock [supervisor:214288] no ipc message from child [supervisor:214288] subprocess 214289 exited with code 1 ```
-
-
Maksim Kaitmazian authored
We don't need to replace $n with question marks any more, as we support the pg parameters format. See https://git.picodata.io/picodata/picodata/sbroad/-/merge_requests/377 and https://git.picodata.io/picodata/picodata/sbroad/-/issues/543.
-
- May 30, 2024
- May 29, 2024
-
-
Dmitry Rodionov authored
-
Dmitry Rodionov authored
-
Dmitry Rodionov authored
-
Arseniy Volynets authored
-
Georgy Moshkin authored
Close #635 Reasons: - it's not safe to split raft entries as atomicness is lost - the original feature was not tested
-
- May 28, 2024
- May 27, 2024
-
-
Dmitry Ivanov authored
-
Dmitry Ivanov authored
-
Dmitry Ivanov authored
-
-
-
pgproto used to interact with picodata through lua entrypoins, but after making pgproto a picodata module, we can get rid of this lua layer and simply call corresponding rust functions.
-
-
-
After moving pgproto into picodata we can merge their implementations of Describe into a singe module.
-
The backend module implements the logic for handling postgres messages. Note that this commit doesn't bring anything new: it just moves picodata's handlers into pgproto.
-
- May 24, 2024
-
-
Егор Ивков authored
-