We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd0d110 commit 3389f98Copy full SHA for 3389f98
index.js
@@ -390,7 +390,7 @@ class Statement {
390
const result = [];
391
for (const row of this.iterate(...bindParameters)) {
392
if (this.pluckMode) {
393
- result.push(Object.keys(row)[0]);
+ result.push(row[Object.keys(row)[0]]);
394
} else {
395
result.push(row);
396
}
promise.js
@@ -392,7 +392,7 @@ class Statement {
const it = await this.iterate(...bindParameters);
for (const row of it) {
397
398
0 commit comments