Skip to content

Commit 55ad3fe

Browse files
committed
rm console
1 parent 3da1d84 commit 55ad3fe

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

packages/extension-driver-duckdb/src/lib/duckdbDataSource.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -93,13 +93,10 @@ export class DuckDBDataSource extends DataSource<any, DuckDBOptions> {
9393
bindParams,
9494
profileName,
9595
operations,
96-
headers,
9796
}: ExecuteOptions): Promise<DataResult> {
9897
if (!this.dbMapping.has(profileName)) {
9998
throw new InternalError(`Profile instance ${profileName} not found`);
10099
}
101-
console.log(`execute duckdb: ${sql}`);
102-
console.log({ headers });
103100
const { db, configurationParameters, ...options } =
104101
this.dbMapping.get(profileName)!;
105102
const [firstDataSQL, restDataSQL] = buildSQL(sql, operations);

0 commit comments

Comments
 (0)