We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ac438e8 commit b78a508Copy full SHA for b78a508
lib/native/result.js
@@ -19,3 +19,10 @@ NativeResult.prototype.addCommandComplete = function(pq) {
19
});
20
}
21
};
22
+
23
+NativeResult.prototype.addRow = function(row) {
24
+ // This is empty to ensure pg code doesn't break when switching to pg-native
25
+ // pg-native loads all rows into the final result object by default.
26
+ // This is because libpg loads all rows into memory before passing the result
27
+ // to pg-native.
28
+};
0 commit comments