ruby-pg
ruby-pg copied to clipboard
A PostgreSQL client library for Ruby
There's already #stream_each_tuple but the non-streaming counterpart for it was missing.
(Originally opened at https://github.com/jeremyevans/sequel_pg/issues/60) This is my code ```ruby # frozen_string_literal: true require "bundler/inline" gemfile do source "https://rubygems.org" gem "sequel", "5.96.0" gem "sequel_pg", "1.17.2", require: "sequel" gem "pg", "1.6.2", force_ruby_platform:...
When `linux` platform comes first, then a rake task is defined for `lib/2.7/pg_ext.so` which links to `linux` instead of `linux-musl`. Defining `linux-musl` first fixes this since the task is defined...