Skip to content

Commit e656d5d

Browse files
committed
Create table dbo.ThisIsMemoryOptimised
1 parent c2545bb commit e656d5d

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

TestDatabases/SQLServer/EfrpgTest (manually created).sql

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2583,3 +2583,13 @@ BEGIN
25832583
END
25842584
END;
25852585
GO
2586+
2587+
-- #782 support for memory optimised tables
2588+
CREATE TABLE dbo.ThisIsMemoryOptimised
2589+
(
2590+
Id INT NOT NULL IDENTITY(1, 1),
2591+
Description VARCHAR(20) NOT NULL,
2592+
CONSTRAINT PK_ThisIsMemoryOptimised PRIMARY KEY NONCLUSTERED (Id)
2593+
)
2594+
WITH (MEMORY_OPTIMIZED = ON, DURABILITY = SCHEMA_AND_DATA);
2595+
GO
34.3 KB
Binary file not shown.

0 commit comments

Comments
 (0)