henry

Results 33 issues of 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',...

enhancement

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...

improvement

## Goal ```sql SELECT * FROM Items WHERE name LIKE 'GLUE_SQL' ``` | id | name | |----|----------| | 1 | GLUE+SQL | | 2 | GLUE_SQL | ```sql SELECT...

enhancement
good first issue

## 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...

enhancement

### 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,...

awaiting

# 🚧 WIP ![image](https://github.com/gluesql/gluesql/assets/51254761/4b514c41-6766-4871-a6b6-cf1f03f9da51)

enhancement

## Todo - [x] Add the number of dropped tables to Payload::Droptable - [x] early return if table does not exist - [ ] should we use Arc? ## Next...