File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed
Orm/Xtensive.Orm.Tests.Sql/SqlServer Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -520,6 +520,8 @@ MINVALUE 10 MAXVALUE 200
520520 [ Test ]
521521 public void ExtractInt32SequenceTest ( )
522522 {
523+ Require . ProviderVersionAtLeast ( StorageProviderVersion . SqlServer2012 ) ;
524+
523525 var createSequence = @"CREATE SEQUENCE dbo.IntSeq
524526 AS int
525527 START WITH 12 INCREMENT BY 3
@@ -546,6 +548,8 @@ MINVALUE 10 MAXVALUE 200
546548 [ Test ]
547549 public void ExtractInt16SequenceTest ( )
548550 {
551+ Require . ProviderVersionAtLeast ( StorageProviderVersion . SqlServer2012 ) ;
552+
549553 var createSequence = @"CREATE SEQUENCE dbo.SmallIntSeq
550554 AS smallint
551555 START WITH 12 INCREMENT BY 3
@@ -572,6 +576,8 @@ MINVALUE 10 MAXVALUE 200
572576 [ Test ]
573577 public void ExtractByteSequenceTest ( )
574578 {
579+ Require . ProviderVersionAtLeast ( StorageProviderVersion . SqlServer2012 ) ;
580+
575581 var createSequence = @"CREATE SEQUENCE dbo.TinyIntSeq
576582 AS tinyint
577583 START WITH 12 INCREMENT BY 3
You can’t perform that action at this time.
0 commit comments