David Fetter

Results 50 comments of David Fetter

@rchar01 , I'm sorry to report that Chris died unexpectedly earlier this month. I guess we'll need to figure out a succession plan for this project and any others he...

That maintenance is landing on one person who may or may not actually have the time because they have other obligations such as a day job is precisely the problem....

Maybe there could be a left pad (lpad) as above and a corresponding right pad (rpad) function.

How about something along this line? It's not recursive, but it's likely pretty fast. ```jq def lpad(string;len;fill): if len == 0 then string else (fill * len)[0:len] + string end;...

Adjusted per comments, and thanks for looking at this!

Bump

Thanks for getting back to me on this. Your priority list makes a lot of sense. Thanks for making this project happen, @GeoffMontee.

With utmost respect, this isn't the era when a few megabytes' worth of infrastructure is even noticeable. Is it really all that burdensome to be running PostgreSQL?

I suspect that a good many people would really like to have this shipped with PostgreSQL. If it were, would you see requiring a live DB connection as a reasonable...

What would be ideal for me may not be practical as a goal. This would be: - A parser which has current access to the catalog of the database in...