Skip to content
Snippets Groups Projects
  1. Dec 09, 2024
  2. Dec 05, 2024
  3. Dec 02, 2024
    • Maksim Kaitmazian's avatar
      fix: deserialize LuaValue as rmpv::Value · 0f7aa571
      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.
      0f7aa571
  4. Nov 29, 2024
  5. Nov 27, 2024
  6. Nov 25, 2024
  7. Nov 21, 2024
  8. Nov 14, 2024
  9. Oct 16, 2024
  10. Oct 07, 2024
  11. Oct 03, 2024
  12. Oct 01, 2024
    • Maksim Kaitmazian's avatar
      feat(sql): support IF EXIST and IF NOT EXISTS options · 1a553992
      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
      ```
      1a553992
    • Arseniy Volynets's avatar
      8d0f19e6
  13. Sep 30, 2024
  14. Sep 27, 2024
  15. Sep 24, 2024
  16. Sep 23, 2024
  17. Sep 20, 2024
  18. Sep 13, 2024
  19. Sep 12, 2024
  20. Sep 11, 2024
  21. Sep 10, 2024
  22. Sep 03, 2024
  23. Aug 26, 2024
  24. Aug 22, 2024
  25. Aug 12, 2024
  26. Jul 23, 2024
  27. Jul 13, 2024
Loading