Skip to content

Commit

Permalink
Fixing bit IdentifierNode to be boolean instead of buffer
Browse files Browse the repository at this point in the history
  • Loading branch information
Tyler Gottfredsen authored and RobinBlomberg committed Apr 2, 2024
1 parent e7f8d14 commit 928c3cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dialects/mssql/mssql-adapter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export class MssqlAdapter extends Adapter {
override readonly scalars = {
bigint: new IdentifierNode('number'),
binary: new IdentifierNode('Buffer'),
bit: new IdentifierNode('Buffer'),
bit: new IdentifierNode('boolean'),
char: new IdentifierNode('string'),
date: new IdentifierNode('Date'),
datetime: new IdentifierNode('Date'),
Expand Down

0 comments on commit 928c3cd

Please sign in to comment.