Mike Stefanello
Mike Stefanello
An index with any conversion on it (ie, lower, least, etc) will cause the generation to fail: `error: could not find public.table_name index index_name column id 0`
Trying to generate a schema with `xo` for the first time. ``` $ mkdir -p models $ xo schema "pgsql://postgres@localhost:5432/dev?sslmode=disable" error: sql: Scan error on column index 1, name "enumsortorder":...
I wrote and maintain [pagoda](https://github.com/mikestefanello/pagoda), a rapid, full-stack web development starter kit. I included _gocache_ to provide a flexible way to handle caching that wouldn't have to be changed if...
### motionEyeOS Version I am running motionEyeOS version: [20200606](https://github.com/ccrisan/motioneyeos/releases/tag/20200606) ### Board Model Raspberry PI 2 ### Camera Amcrest 1080p USB Webcam (https://www.amazon.com/gp/product/B08FCQY62D/) ### Network Connection My motionEyeOS unit is connected...
**Is your feature request related to a problem? Please describe.** When bulk-inserting via `Querier.InsertMulti` the primary key field on the structs are not updated with the key it was assigned...
**Describe the bug** Some of my PG tables have generated fields. Trying to insert records for those models will fail, even if you omit the field because the query will...
Really awesome tool you created. Exactly what I was looking for. I was able to import 1 pgn successfully. The other is having a lot of problems (even though it...
Proposal to switch from individual routes to handlers, which are designed to support groups of routes and will self-register with the router. I think this is a slightly nicer design.
**Improvements:** 1. Use handlers that group related routes rather than individual routes with methods for each HTTP method. 2. Allow handlers to self-register middleware, groups and routes rather than having...
When using in-memory stores such as _go-cache_, it seems possible that a data race condition exists when setting cache tags. The code in question can be found here: https://github.com/eko/gocache/blob/master/store/go_cache/go_cache.go#L82-L110 As...