Xoel Lopez Barata

Results 7 comments of Xoel Lopez Barata

Hi, I've been struggling with this for the past 2 days, my 2 cents if it helps someone. My app was working locally but not on AWS In my case...

> In my case, switching my ohmyzsh shell theme back to the default fixed the issue. I suspect some themes introduce extra git behaviours which run fine locally but take...

Thanks for the quick reply! I think I'll go with creating it directly on the DB. That's the 1st aggregate function I ever created, so I'm missing too much of...

Any updates on this? Did you guys found a workaround to repect the field order? I've also run into this problem building a FastAPI application

BTW, I've just seen that you can do `pipenv install --ignore-pipfile` ([source](https://pipenv.kennethreitz.org/en/latest/basics/#pipenv-install)) and you install the versions that are saved in Pipfile.lock, ignoring Pipfile. So there's no option so save-exact...

`limit_by` doesn't also seem to work. In a query like this ```py jobs_found_query: sa.Select[Job] = ( chsa.select(Job) .where( Job.company_name.in_(company_names), *job_filters, ) .order_by(Job.company_name, Job.neg_posted_at_timestamp.asc()) .limit_by([Job.company_name], limit=10, offset=0) # does not work...