added a binding queue for oe to force one operation on a node at a time (#441)

* added a binding queue for oe to force one operation on a node at a time

* setting node subtype to temporal for temporal tables

* disposing oe service on shutdown
This commit is contained in:
Leila Lali
2017-08-22 15:15:01 -07:00
committed by GitHub
parent d94dda4282
commit eb61423f89
9 changed files with 174 additions and 38 deletions

View File

@@ -240,6 +240,24 @@
GO
CREATE TABLE [dbo].[tableWithAllDataTypes](
[cDecimal] [decimal](18, 5) NULL,
[cNumeric] [numeric](18, 2) NULL,
[cBigint] [bigint] NULL,
[cDate] [date] NULL,
[cDatetime] [datetime] NULL,
[cFloat] [float] NULL,
[cSmalldatetime] [smalldatetime] NULL,
[cDatetime2] [datetime2](7) NULL,
[cDatetimeoffset] [datetimeoffset](7) NULL,
[cTime] [time](7) NULL,
[cBinary] [Binary] NULL,
[cBit] [Bit] NULL,
[cChar] [Char] NULL,
[cMoney] [Money] NULL
) ON [PRIMARY]
GO
ALTER TABLE [HumanResources].[Employee] ADD CONSTRAINT [DF_Employee_SalariedFlag] DEFAULT ((1)) FOR [SalariedFlag]
GO
ALTER TABLE [HumanResources].[Employee] ADD CONSTRAINT [DF_Employee_VacationHours] DEFAULT ((0)) FOR [VacationHours]