Skip to content

fix(pgproto): correct row count for SELECT command tag

Maksim Kaitmazian requested to merge max/pgproto/fix-select-row-count into master

Summary

  • fix(pgproto): correct row count for SELECT command tag

Previously, we retrieved the row count using rows.len(), where rows was an iterator that returned the remaining number of rows instead of the total number of rows sent.


  • Close #...
  • Cherry-pick to: none
  • Docs follow-up: not necessary / new issue

Merge request reports