Skip to content

Commit a525a5e

Browse files
Refactor: Remove unused cellValueToSql import from LoggingDatabaseOperations
The `cellValueToSql` function was imported but never utilized within `src/loggingDatabaseOperations.ts`. Removing it cleans up the codebase and improves maintainability without impacting behavior. Co-authored-by: zknpr <96851588+zknpr@users.noreply.github.com>
1 parent 8cc23d8 commit a525a5e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/loggingDatabaseOperations.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import type {
1919
ColumnMetadata,
2020
ColumnDefinition
2121
} from './core/types';
22-
import { escapeIdentifier, cellValueToSql } from './core/sql-utils';
22+
import { escapeIdentifier } from './core/sql-utils';
2323
import { buildSelectQuery, buildCountQuery } from './core/query-builder';
2424

2525
export class LoggingDatabaseOperations implements DatabaseOperations {

0 commit comments

Comments
 (0)