Therapon Skoteiniotis

Results 12 comments of Therapon Skoteiniotis

This behaviour might also be relevant for this issue. Using the same data set as above the below query ``` SELECT e.name AS employeeName, ( SELECT COUNT(*) FROM e.projects AS...

> Is this SQL-92? I do not think so. I believe SQL92 has `intervals` and relies on `extract` to grab scalars from an interval. `date_diff` seems to be a common...

The spec states that ordinal access (e.g., `t[1]`) is allowed *when there is a schema* (to the best of my understanding) the examples provided are similar but there is no...

That is a t-shirt size estimate for the task. The reason for the L tag is that ORDER BY needs to implement the ordering semantics per the spec (section 12...

> Hi David, Thank you for your response. I didn't understand "we do accept pull requests". Is that about http requests? Thanks, That was more of an invitation. We would...

``` LET e1 AS v1 e2 AS v2 ... en AS vn ``` `e1, ..., en` are referred to as let-expressions `v1, ..., vn` are referred to as let-bindings complete...

+1 on JSON It seems to be the common format used for structured logging which will allow easy ingestion into existing tools (Sumo comes to mind)

Yes that approach requires we store the shell script in a repo and provide a URL to grab it. A first step could be to take the long command we...

Another option is to use python instead of bash. We can have the same python code in the Kaskada Python client that performs the checks and installation shared with the...