henry
henry
# 🚧 Draft yet ## Goal ### 1. Extract DDL of a Table by literal name ```sql gluesql> CREATE TABLE Foo (no INT); gluesql> SELECT GET_DDL('TABLE', 'Foo'); ``` | GET_DDL('TABLE',...
Currenty, `sort` and `limit(offset)` are being executed individually. https://github.com/gluesql/gluesql/blob/9950ee6f43fa73f06a5d53ea74d200586c93f8cb/core/src/executor/select/mod.rs#L304-L308 It seems like if we execute `limit(offset)` and `sort` simultaneously, could reduce the amount of rows to sort dramatically. eg) ```sql...
## Goal ```sql SELECT * FROM Items WHERE name LIKE 'GLUE_SQL' ``` | id | name | |----|----------| | 1 | GLUE+SQL | | 2 | GLUE_SQL | ```sql SELECT...
## Goal Currently nodejs usage on README.md does not work. It should be executable only by copying and pasting for beginners. ## Todo - [x] fix: correct files' field to...
## Issue ```sql SELECT * FROM User JOIN Dept ON User.deptId = Dept.id; ``` Above Query does not work and gets `ParserError("Expected end of statement, found: .")` It works fine...
I want to parse some table_factor with args like ```rs "Table(3)" ``` but without parsing full sentense (`SELECT * FROM Table(3)`) I found there is `fn parse_table_factor` but it seem...
## Goal Support `COMMENT ON {TABLE | COLUMN ..}` Statement to put Comment on specific object. ```sql COMMENT ON { COLUMN relation_name.column_name | CONSTRAINT constraint_name ON table_name | FOREIGN TABLE...
### Discussed in https://github.com/fzyzcjy/flutter_rust_bridge/discussions/2101 Originally posted by **devgony** June 18, 2024 First of all, Could you please check if i can use automatic third-party scanning for [this crate](https://crates.io/crates/gluesql) If not,...
# 🚧 WIP 
## Todo - [x] Add the number of dropped tables to Payload::Droptable - [x] early return if table does not exist - [ ] should we use Arc? ## Next...