Olivier Guimbal
Olivier Guimbal
For my information: Which kind of retroactive edge cases are you refering to ? You mean edge cases with your specific use case leading you to change your model ?...
Hi ! Thanks for the report (and sorry for the late reply). "OVER" keyword is not supported yet in pg-mem. It will come, but I cant give an ETA yet...
thanks for the details
Hi ! Thanks for the report. Thanks for trying to fix that. I'm not sure why you get these errors (the error itself is kinda weird: I dont see how...
Hi Rémi, Thanks ! Ouch... that not a simple function, so registerFunction() is not the right call here. This is quite tricky to implement. I dont have time to implement...
Hi ! You could declare multiple overloads of the same function like below. As a side note: Beware, it could work to return a moment instance because pg-mem also uses...
Hey ! Sorry for the delay :) What is the error ? Thanks
Okay thanks :)
Hi, a workaround could be to create this function in your db: ```sql create function substring_from(str text, search text) returns text as $$ select substring(str from search) $$ language sql...
That could be possible. Actually, I recently began including error messages matching actual pg errors + some details that pg usually provides. [See here for an example](https://github.com/oguimbal/pg-mem/blob/64364aca03ab68274d967ae27c8f751c5e8117c2/src/constraints/foreign-key.ts#L170-L174) I could also...