Results 116 comments of Olivier Guimbal

Ah. Numeric precision is not implemented 😑 Thanks for the report. I'll add it to the (pretty long) todo list

Hi, It would be easy to implement it naïvely, meaning that table creation would work, and usual operations as well. BUT, doing that would not implement the actual behaviour of...

Now that I think about it, this workaround should work as well: ```typescript const db = newDb(); db.public.interceptQueries(sql => { const newSql = sql.replace(/\bnumeric\s*\(\s*\d+\s*,\s*\d+\s*\)/g, 'float'); if (sql !== newSql) {...

You're welcome :) Thanks for the fix. (I amended my answer with it)

Hi, I thought I answered, sorry. Not yet, it requires a non negible quantity of work that I did not find room for in my calendar yet :/ In the...

Nice! Thanks. A detail that you might want to know: Your custom functions implementations will never be called with a null argument - the function call will be evaluated as...

FYI I did not forget you :) #46 is also having this issue...as I told there, I must refactor a bit some things to make this work, and I didnt...

Thats a bug. Thanks for the report. Same comment as on your other issue: I dont have much time these days, but I'm adding it to my todo list :)

Hi ! Nope, the issue you are refering to is not about parsing multidimentional arrays (nor parsing literals, for that matter). Thanks to have checked for duplicate though :) I'm...

No, master is fine... This project is small so I try too keep things simple. That said, you might try, but you might have some trouble integrating the breaking change...