Kabir Pathak
Kabir Pathak
@JonMidhir Issue was resolved using the solution suggested here: https://github.com/jnunemaker/httparty/discussions/740#discussioncomment-2951273. Thanks for your reply, nonetheless.
Like @rizkhal, I really need this feature in single select. Any news on when and if this will be merged? How can i help in speeding up this MR?
Facing the same issue.
Reproduction steps: ```ruby # frozen_string_literal: true require "bundler/inline" gemfile(true) do source "https://rubygems.org" gem "rails", github: "rails/rails", branch: "main" gem "pry" gem "sqlite3" end require "active_record" require "minitest/autorun" require "logger" #...
On looking deeper, its seem this is not exactly a bug since other methods like `pluck` behave similarly. `For example`: ```ruby Comment.joins(:comments).pluck(:id) # comments.id SELECT "comments"."id" FROM "comments" INNER JOIN...