-
Similar to how you can use `SELECT` in SQL not only with existing fields from a table, but also derive new fields from existing properties using expressions, we discussed defining similar capabilities…
-
`SELECT languages = 10 AND languages = 11 FROM test_emp where emp_no IN(10018, 10019, 10020, 10021);`
returns:
```
false
---------------
false
```
as the AND expressio…
-
From [Slack](https://cube-js.slack.com/archives/C04NYBJP7RQ/p1679951275112219):
Given the following sample schema:
```yml
cube:
- name: items
sql: SELECT * FROM items
dimensions:
…
-
I wish split function support "Base expression cannot start with quantifier near index 1".
The reproduce:
```
sc.makeRDD(1 to 10000, 6).toDF.createOrReplaceTempView("df")
spark.sql("select split(val…
-
### Steps to reproduce
`add_index :profiles, [:organization_id, 'lower(email)']` fails with `ActiveRecord::StatementInvalid: PG::UndefinedColumn: ERROR: column "lower(email)" does not exist`.
I…
-
### What happened?
for BigQuery,
if we use a Recursive CTE statement something like this:
```
WITH RECURSIVE
CTE_1 AS (
(SELECT 1 AS iteration UNION ALL SELECT 1 AS iteration)
UNION …
-
### Description
1) it doesn't suggest columns inside brackets of "partition by"-clause, "order by"-clause, "filter-where"-clause, "over"-clause.
2) it doesn't autocomplete two words "partition b…
-
I'd like to approach this library by tackling some simple problems first to get a sense of how difficult the larger problems will be. First thing I'd like to do is translate expressions and construct…
-
To reproduce this issue , you may use the code i m pasting below. This application queries a table using sqlServer which contains a json column.
table structure -
```
Author {
id int ,
name varch…
-
Hi! I've been recently trying out ```rix``` and encountered the following issue
## Context
I'm working in a shiny app docker image and decided to give a try to `rix`. Dependency management worke…