Skip to content

Commit 1a9e06d

Browse files
committed
NH-3969 - TimestampResolutionInTicks in Firebird should be 1ms
1 parent 1d0fe41 commit 1a9e06d

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/NHibernate/Dialect/FirebirdDialect.cs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -209,9 +209,8 @@ public override SqlString AddIdentifierOutParameterToInsert(SqlString insertStri
209209

210210
public override long TimestampResolutionInTicks
211211
{
212-
// Lousy documentation. Various mailing lists and articles seem to
213-
// indicate resolution of 0.1 ms, i.e. 1000 ticks.
214-
get { return 1000L; }
212+
// Resolution of 1 ms, i.e. 10000 ticks.
213+
get { return 10000L; }
215214
}
216215

217216
public override bool SupportsCurrentTimestampSelection

0 commit comments

Comments
 (0)