- Sep 17, 2024
-
-
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 '%'
-
EmirVildanov authored
-
EmirVildanov authored
-
Arseniy Volynets authored
- to_params uses subtree iterator to create parameters for cached query. But our plan is a DAG, not a tree. We have multiple nodes referring to the same node, this leads to situation when we traverse the same subquery node multiple times. This in term leads to wrong number of parameters produces by to_params - fix this by keeping track of already traversed parameter nodes in to_params
-
EmirVildanov authored
-
- Sep 16, 2024
-
-
EmirVildanov authored
-
EmirVildanov authored
feat: support additional SubQuery children for any relational operator, interpret SubQuery with single output as expression
-
EmirVildanov authored
-
EmirVildanov authored
-
EmirVildanov authored
-
EmirVildanov authored
-
EmirVildanov authored
-
EmirVildanov authored
-
EmirVildanov authored
-
EmirVildanov authored
-
EmirVildanov authored
-
EmirVildanov authored
-
EmirVildanov authored
-
EmirVildanov authored
-
EmirVildanov authored
-
Denis Smirnov authored
-
Denis Smirnov authored
-
Denis Smirnov authored
Co-authored-by:
Georgy Moshkin <gmoshkin@picodata.io>
-
- Sep 13, 2024
-
-
Previously some public lua functions in core-router.lua failed returning nil instead of an error. As a result in a case of error rust code treated it as success, but failed to pop expected results from lua stack. So, instead of a real error user got lua reading errors. Fixed. Co-authored-by:
Denis Smirnov <sd@picodata.io>
-
godzie44 authored
-
EmirVildanov authored
-
EmirVildanov authored
-
EmirVildanov authored
-
EmirVildanov authored
-
EmirVildanov authored
-
EmirVildanov authored
-
EmirVildanov authored
feat: add logic of correct local SQL generation for the case of asterisk (not in a view of references, but as "*")
-
EmirVildanov authored
-
EmirVildanov authored
-
EmirVildanov authored
-
EmirVildanov authored
-
EmirVildanov authored
fix: remove useless SubQuery nodes, fix logic of vtable columns naming (automatic indexes instead of names from local SQL metadata)
-
- Sep 12, 2024
-
-
Maksim Kaitmazian authored
-
Andrey Strochuk authored
-
- Sep 11, 2024
-
-
Andrey Strochuk authored
-