Skip to content

Commit 4536066

Browse files
committed
Revert some requirements
Native type for storing TimeSpans can be promoted to better precision later on, so let the problem be uncovered
1 parent 894ac25 commit 4536066

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

Orm/Xtensive.Orm.Tests/Issues/Issue0818_NanosecondTrancation.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ protected override DomainConfiguration BuildConfiguration()
4242
[Test]
4343
public void MainTest()
4444
{
45-
Require.ProviderIsNot(StorageProvider.PostgreSql | StorageProvider.Oracle); // PostgreSql and Oracle store intervals with microseconds only
45+
Require.ProviderIsNot(StorageProvider.PostgreSql); // PostgreSql stores intervals with microseconds only
4646

4747
long ticks = 123456789;
4848

Orm/Xtensive.Orm.Tests/Issues/IssueJira0449_TimeSpanMinMaxValue.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,6 @@ protected override DomainConfiguration BuildConfiguration()
3838
[Test]
3939
public void MinTest()
4040
{
41-
Require.ProviderIsNot(StorageProvider.Oracle, "Oracle has no resolution for TimeSpan.MinValue");
42-
4341
using (var session = Domain.OpenSession())
4442
using (var tx = session.OpenTransaction()) {
4543
var created = new EntityWithTimeSpan {Value = TimeSpan.MinValue};

0 commit comments

Comments
 (0)