Maximilian Roos

Results 1161 comments of Maximilian Roos
trafficstars

FYI here's a surprising case where even passing `--ignore='target/**'` didn't work (notice that it keeps triggering on a path within `target`). This is running in the `/Users/maximilian/workspace/prql` path. There are...

This works great!! It's let me remove a bunch of configs, such as those in https://github.com/prompt-toolkit/python-prompt-toolkit/issues/192#issuecomment-694649157 Thanks a lot!

This was done by #1217, thanks @mklopets !

I do think this would be great for the project! If anyone wants to own either an Emacs or Vim plugin, we would be happy to integrate it into the...

Update from the future, I was reminded about this by https://github.com/PRQL/prql/pull/1963#discussion_r1118058455: - We have some CLI tests, but these only test the inner methods — they don't test the full...

I don't get errors around being able to run the binary, but possibly I'm doing something different (sorry I missed the PR before, as I said on Discord I've been...

That's great you're working on this, looking forward to seeing how it goes. Definitely ask questions here. --- > I would like to replace identifiers with `$1`, `$2`, ..., `$n`...

OK great! > Any parameter value (the function's parameters) needs to be considered when evaluating the resulting SQL. The easiest way to do this with PGRX seems to be with...

I see! And it's not possible to have `function get_movies_by_year($1 integer)...filter release == $1`, and avoid the need to do the replacement? And to confirm — we're not doing "create...

> ```diff > from movies > -select {title, release} > +select {title, release, year} > filter release == year > ``` > > This is fine for proof-of-concept but it...