Skip to content
This repository has been archived by the owner on May 9, 2020. It is now read-only.

Commit

Permalink
Fix type mapping for FB version < 3 with dialect version >= 3
Browse files Browse the repository at this point in the history
  • Loading branch information
qbikez committed Jun 23, 2018
1 parent 5399ea8 commit bf46f00
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ public FbTypeMappingSource(
DbType.Int64);

_boolean = new FbBoolTypeMapping(
_isLegacy
_isLegacy || options.ServerVersion?.Major < 3
? "SMALLINT" : "BOOLEAN");

_storeTypeMappings = new Dictionary<string, RelationalTypeMapping>(StringComparer.OrdinalIgnoreCase)
Expand Down

0 comments on commit bf46f00

Please sign in to comment.