Skip to content
Snippets Groups Projects
  1. May 15, 2023
  2. May 12, 2023
  3. May 11, 2023
  4. May 05, 2023
  5. May 04, 2023
    • Denis Smirnov's avatar
      feat: add distributed SQL support · a1ed2657
      Denis Smirnov authored
      
      Current commit introduces distributed SQL in picodata (we use
      'sbroad' library). Now it is possible to execute cluster-wide
      SQL with 'pico.sql([[query]], {params})' lua method.
      
      Current limitations:
      1. DDL is still not implemented in picodata, so space sharding
         is mocked by '_pico_space' space (we'll remove it later).
      2. We still have duplicating symbols of the Tarantool module in
         sbroad and in picodata rlibs.
      3. We need to reuse piocdata's sharding functions and handle the
         case when different spaces in the query have different sharding
         functions.
      
      Co-authored-by: Georgy Moshkin's avatarGeorgy Moshkin <gmoshkin@picodata.io>
      a1ed2657
    • Дмитрий Кибирев's avatar
      ci: pack macos-arm package · c7b5b949
      Дмитрий Кибирев authored and Yaroslav Dynnikov's avatar Yaroslav Dynnikov committed
      c7b5b949
  6. May 03, 2023
  7. Apr 28, 2023
    • Егор Ивков's avatar
      feat: use only primary index for ddl and dml · 2a6288a9
      Егор Ивков authored
      Related issues:
      - #237 Restrict cas predicate over primary index only.
      Having secondary index in the cas predicate is problematic. At the moment we don't store enough information to check the predicate and storing this information would make the logic much complex
      and was deemed not important enough for the user.
      
      - #258 Dml semantics
      Even though tarantool supports delete/update by secondary key, in the write-ahead log the operations are stored by primary key only. It was decided to also proceed in this direction. The operations will be represented as by primary key only and any secondary key update logic will probably be offloaded to clients/interfaces.
      2a6288a9
    • Егор Ивков's avatar
  8. Apr 24, 2023
Loading