Heroku 上的 ActiveRecord 错误

发布于 2024-11-03 23:50:34 字数 517 浏览 0 评论 0原文

我有以下代码在开发环境 (SQLite) 上运行,但在 Heroku (PostgreSQL) 上生成错误:

@shoes_with_images = Shoe.
select( "shoes.id, shoes.collection_id, count( shoe_images.shoe_id ) as c" ).
joins( :shoe_images ).
group( "shoes.id" ).
having( "c > 0" ).
where( :collection_id => params[:id] ).
offset( (page - 1) * SHOES_PER_PAGE ).
limit( SHOES_PER_PAGE ).all

错误消息:

ActiveRecord::StatementInvalid (PGError: ERROR:  column "c" does not exist

如何更正此查询以使其在 Postgres 上运行?

I have following code working on a development environment (SQLite) but generating an error on Heroku (PostgreSQL):

@shoes_with_images = Shoe.
select( "shoes.id, shoes.collection_id, count( shoe_images.shoe_id ) as c" ).
joins( :shoe_images ).
group( "shoes.id" ).
having( "c > 0" ).
where( :collection_id => params[:id] ).
offset( (page - 1) * SHOES_PER_PAGE ).
limit( SHOES_PER_PAGE ).all

Error message:

ActiveRecord::StatementInvalid (PGError: ERROR:  column "c" does not exist

How can I correct this query to make it work on Postgres?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

森林散布 2024-11-10 23:50:34

尝试更改

having( "c > 0" )

having( "count( shoe_images.shoe_id ) > 0" )

不是 100% 确定,但我认为查询处理器在处理 group byhaving 语句时没有别名“c” 。

Try changing

having( "c > 0" )

with

having( "count( shoe_images.shoe_id ) > 0" )

I'm not 100% sure, but I think that the query processor doesn't have the alias "c" when it processes the group by or having statements.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文