Skip to content

Commit

Permalink
parity with official client
Browse files Browse the repository at this point in the history
  • Loading branch information
DaBigBlob committed Jun 26, 2024
1 parent 44645d7 commit 4884981
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/parsers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ export function libsqlStatementResParser(

const colName = res.cols[j].name!;
if (colName !== undefined && !Object.hasOwn(row, colName)) {
Object.defineProperty(row, colName, { value, enumerable: true });
Object.defineProperty(row, colName, { value, enumerable: true, configurable: true, writable: true });
}
}
Rows.push(row as Row);
Expand Down

0 comments on commit 4884981

Please sign in to comment.