We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bc919cd commit 24e767dCopy full SHA for 24e767d
modules/tool/packages/dbops/children/oracle/src/index.ts
@@ -24,10 +24,7 @@ export async function main({
24
await sql.close();
25
await pool.close();
26
return {
27
- result: {
28
- rows: result?.rows ?? [],
29
- metaData: result?.metaData ?? []
30
- }
+ result: JSON.parse(JSON.stringify(result))
31
};
32
} catch (error: unknown) {
33
if (error instanceof Error) {
0 commit comments