| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | bring back support for LastInsertId-based INSERT | Stefan Majewsky | 2026-05-22 | 1 | -2/+19 |
| | | | | | | | As the remaining TODO noted, this really is much more memory-efficient than QueryRow when we can use it, since it does not allocate an *sql.Rows instance inside the *sql.Row instance where we call Scan(). | ||||
| * | fix typos | Stefan Majewsky | 2026-05-12 | 1 | -1/+1 |
| | | |||||
| * | exclude testhelpers from coverage testing | Stefan Majewsky | 2026-04-24 | 1 | -1/+1 |
| | | |||||
| * | remove support for SQL dialects that rely on LastInsertId() | Stefan Majewsky | 2026-04-24 | 1 | -26/+50 |
| | | | | | | | | | | | While researching for Upsert(), I noticed that both SQLite and MariaDB support INSERT with RETURNING clause, which is objectively better than LastInsertId() and cuts out a lot of useless crap from the codebase (esp. from monomorphization-relevant methods). The only tangible downside is that this drops support specifically for MySQL, but you know what? Fuck Oracle. | ||||
| * | add query planning for Upsert() | Stefan Majewsky | 2026-04-23 | 1 | -0/+42 |
| | | |||||
| * | increase test coverage for planning | Stefan Majewsky | 2026-04-15 | 1 | -0/+135 |
| | | |||||
| * | clarify behavior around recursing into struct type members | Stefan Majewsky | 2026-04-15 | 1 | -4/+2 |
| | | |||||
| * | add MysqlDialect | Stefan Majewsky | 2026-04-14 | 1 | -0/+63 |
| | | |||||
| * | fold package internal into package oblast | Stefan Majewsky | 2026-04-14 | 1 | -0/+278 |
| | | |||||
| * | reorganize code | Stefan Majewsky | 2026-04-10 | 1 | -38/+0 |
| | | |||||
| * | start reflecting on types to build a query plan | Stefan Majewsky | 2026-04-10 | 1 | -0/+38 |
