Jan Urbański
Jan Urbański
Dang, looks like I need to update for new PGXS. I'll fix it soon and publish an updated version on PGXN.
Hey, I tried on my local Debian machine and the extension compiled fine. Could you make sure you have the `postgresql-server-dev-9.5` package installed and paste the output of the following...
Thanks, it looks like you're still missing the `postgresql-server-dev-9.5` package. Could you paste the output of: ``` apt-cache policy postgresql-server-dev-9.5 ``` And then maybe just try installing it with: ```...
You need to run `sudo make install` to install the extension after it's compiled. Once that's done, you should be able to execute `CREATE EXTENSION IF NOT EXISTS first_last_agg;` from...
Glad to hear you made it work! For the record, `first()` won't be any faster than `max()` since they're both build-in C functions. It's intended to replace [these](https://wiki.postgresql.org/wiki/First/last_%28aggregate%29) functions, so...
Aggregate functions are invoked on every tuple in the aggregate, there is currently no API that allows telling the executor to not call the function anymore.
Hey, I'm going to take a look at this soon, thanks for reporting!
As mentioned in #6 Tsung 1.5.0 added native support for websocket connections, so you shouldn't need this extensions if you're using modern Tsung.
Hi, First of all, thanks for the report! Which version of Twisted are you using? The culprit seems to be this exception: ``` python ValueError: file descriptor cannot be a...
Thanks for the investigation! I just tried with Twisted trunk and `test_foo.py` failed on my Debian laptop. I tried with various reactors and both `epoll` (the default on Linux) and...