@@ -101,43 +101,3 @@ user.Save(db)
101101// ...
102102
103103```
104-
105- ## Status
106-
107- This repository is currently a WIP, features are still not complete and may likely change.
108-
109- Also the current SQL Parser being based on CockroachDB, some postgres specific syntax may be not supported.
110-
111- ** Known Bug** :
112- * Sqlite:
113- * [x] ~ Generated code contains not supported keywords (like ` ANY ` , just need more tests)~
114- * [x] ~ Batch insert not working, syntax not supported in sqlite~
115- * Postgres
116- * [x] ~ When multiple where condition are combined, index may conflict~
117- * [ ] In sqlx+pq, some advanced type serialization are not supported (like jsonb)
118-
119- ** Roadmap** :
120- * [x] ~ Handle custom user queries~
121- * [ ] Handle sql enums
122- * [ ] Handle sql views
123- * [ ] Support more types and custom types (cf ulid, ...)
124- * [ ] Support more driver and database Mysql/MariaDB/Sqlite3
125- * [x] ~ For Postgres support both ` pq + sqlc ` or ` pgx ` ~
126- * [ ] For Mysql/MariaDB ` go-sql-driver ` (throught sqlx)
127- * [x] ~ For Sqlite ` modernc.org/sqlite ` (throught sqlx)~
128- * [ ] Support easier logging and profiling
129- * [ ] Support for Listen/Notify on pgx
130- * [ ] Support DB Introspection to automatically extract schema from running database
131- * [ ] Write Documentation
132- * [ ] Pick a static doc generator website
133- * [ ] Setup
134- * Tutorial Postgres
135- * Local DB
136- * Supabase
137- * Tutorial SQLite
138- * Memory
139- * Torso
140- * [ ] Write benchmark to compare performance with existing Golang ORM
141- * [x] Wrote basic comparison (insert, bulk insert, select)
142- * [ ] Add more use cases (select with lot of data, upsert, complex query with joins)
143- * [ ] Generate diagrams out of benchmark data
0 commit comments