Pedro Muniz

Results 53 comments of Pedro Muniz

Hi! I was looking to implement json_pretty, but I noticed that our serialization logic does not use formatters to accommodate for this use case. Serde_json uses them as seen here:...

This is very nice. I was trying to implement Alter Table Rename To, and they like to use it for nested parsing. I was using format! instead to build the...

This would be very useful to support completions for a Repl. What do I need to learn to make this happen?

I'm working on a specific optimization for count. Sqlite has a special case for `Count(*)` when it is just a simple `SELECT count(*) FROM ` it computes all in one...

Could be useful. https://duckdb.org/2022/03/07/aggregate-hashtable.html

I have not updated the docs, as I am not quite familiar with writing docs. I would appreciate some help on that. Thanks!

@PThorpe92 I have a config that I'm working on that should solve this issues. https://github.com/pedrocarlo/limbo/tree/config-cli Just have not got to actually quite finish it yet. But I already have a...

Hey, maybe you could create a preset or base environment file, and let users extend with their own file. It would also make it easier to have variables defined for...

> @pedrocarlo Cool idea! If you've got time, I'd love to see a PR so I can understand the impact 🙏 @haydenbleasel On my list of things to do! Maybe...

My previous implementation was flawed, as I was not forwarding the headers to the next requests. I settled for now on this implementation: ```ts import "server-only"; import { type NextRequest,...