KiteSQL icon indicating copy to clipboard operation
KiteSQL copied to clipboard

SQL as a Function for Rust

Results 24 KiteSQL issues
Sort by recently updated
recently updated
newest added

## Feature Request >TODO: When the case is select * from t1 where (c1 = 7 or c1 = 10) and c2 < 2;, the range is (-inf, (10, 2)),...

invalid

## Bug Report ``` statement ok CREATE TABLE onecolumn (id INT PRIMARY KEY, x INT NULL) statement ok CREATE TABLE empty (e_id INT PRIMARY KEY, x INT) statement ok INSERT...

bug

## Feature Request ``` statement ok CREATE TABLE onecolumn (id INT PRIMARY KEY, x INT NULL) statement ok CREATE TABLE empty (e_id INT PRIMARY KEY, x INT) statement ok INSERT...

enhancement

## Feature Request supports a remote KV cluster as an optional storage engine Tips: I imagine that in the future as an distributed database, I may reuse Scala to write...

enhancement

## Feature Request cache the results of `RangeDetacher::detach` to avoid repeated detach Tips: only works for a single query, so use `HashMap`

enhancement

## Feature Request there is something wrong when binding correlated subqueries because parent context is ignored. ```sql explain select a,b from t where a in (select a from t1 where...

enhancement

## Feature Request I try to perform this case in a table with 200,000 rows: `select * from t1 where c1 > 500 and c1 < 1000`, and use pprof-rs...

perf

## Feature Request > - TODO: Support VIEW & CREATE VIEW & DROP VIEW > - TODO: EXCEPT with VIEW > - TODO: WHERE, GROUP BY, and HAVING clauses supported...

enhancement

## Feature Request When `OrderBy .. Limit ..` exists, the `TopK` operator will be used Tips: `TopK` should also use index

perf

## Feature Request Index arranges data in ascending order, so when OrderBy...ASC, is it possible to remove the Order Operator and convert SeqScan to IndexScan (it cannot be executed if...

enhancement