Skip to content
Snippets Groups Projects
  1. Oct 18, 2024
  2. Oct 02, 2024
  3. Oct 01, 2024
  4. Sep 27, 2024
    • Arseniy Volynets's avatar
      feat: support select without scan · 97d2b814
      Arseniy Volynets authored
      - Support simple queries that do not select
      data from tables. This is similar to `values ..`,
      but allows to add aliases for expressions.
      - Such selects can also be used in subqueries
      - Examples:
      ```
      select 1;
      select (select count(*) from t);
      select 2 as foo, 3 as bar;
      
      select a from t
      where b in (select 100)
      ```
      97d2b814
  5. Sep 24, 2024
  6. Sep 23, 2024
  7. Sep 20, 2024
  8. Sep 17, 2024
    • Arseniy Volynets's avatar
      feat: support like operator · e7999cee
      Arseniy Volynets authored
      - Support like operator with signature:
      
      expr1 LIKE expr2 [ESCAPE expr3]
      
      which returns TRUE only if expr1 matches the
      string specified by expr2 (pattern). '_' in
      pattern matches any single character, '%'
      matches any character 0 or more times. All
      other characters match itself according to
      case.
      
      - Optional escape clause specifies character
      to use for escaping '_' and '%'
      e7999cee
  9. Sep 13, 2024
  10. Sep 10, 2024
  11. Sep 06, 2024
  12. Aug 26, 2024
  13. Aug 22, 2024
  14. Aug 20, 2024
  15. Aug 09, 2024
  16. Aug 08, 2024
  17. Aug 07, 2024
  18. Aug 05, 2024
  19. Jul 12, 2024
  20. Jun 28, 2024
  21. Jun 07, 2024
  22. Jun 04, 2024
  23. May 14, 2024
  24. May 06, 2024
  25. May 03, 2024
  26. Apr 19, 2024
  27. Apr 17, 2024
  28. Apr 16, 2024
  29. Apr 15, 2024
Loading