Matteo Ferrando
Matteo Ferrando
Sorry if this is a dumb question, but `node-postgres` now supports Promises, why not use it now instead of `pg-promise`?
I did not know pg-promise did that many things on top of promisifying node-postgres. Thanks for the answer.
Hey, this seems very important to me, making users download a zip file is not ideal IMHO. Would you accept contributions to do this?
That is a good temporary solution. But I wonder if we could get fal to make this work automatically for date/datetime columns.
As a note for anyone looking at this, the workaround of converting to string is https://github.com/fal-ai/fal/blob/7764e066433b4067c5ab8c50158e1d5cc38ceaec/integration_tests/projects/002_jaffle_shop/fal_scripts/models/orders_forecast.py#L50-L56 If you want timestamp instead of date, you can do `x.strftime("%Y-%m-%d %H:%M:%S.%f")`
An easy way to support this would be by following dbt's Python model design which is based on functions that receive a "dbt" object. ```py def script(faldbt): faldbt.ref(...) ``` instead...
Hello @quinnhornblow , thanks for reaching out. I will take a look at this ASAP. Thanks for the example script that would work for you. I will try to make...
Hello, @quinnhornblow! I think this may be better for Postgres specifically with the latest release [v0.6.0](https://pypi.org/project/fal/0.6.0/). Can you please let me know if it is better now?
This is also asked here: https://github.com/fal-ai/fal/discussions/199
It was recently suggested in the dbt Slack channel #tools-fal to have a `fal deps` command which would install python packages.