Details
Assignee
UnassignedUnassignedReporter
Johannes RauberJohannes RauberComponents
Affects versions
Priority
TrivialWho's Looking?
Open Who's Looking?
Details
Details
Assignee
Unassigned
UnassignedReporter
Johannes Rauber
Johannes RauberComponents
Affects versions
Priority
Who's Looking?
Open Who's Looking?
Created February 20, 2017 at 6:01 PM
Updated February 21, 2017 at 7:50 AM
The MsSql2012Dialect always uses an int as the datatype for a given sequence. The comment in the code does state bigint as the datataype. When using an bigint/long as identifier the datatype of the created sequence should be of the same type.
Current implementation:
protected override string GetCreateSequenceString(string sequenceName, int initialValue, int incrementSize) { // by default sequence is created as bigint return string.Format("create sequence {0} as int start with {1} increment by {2}", sequenceName, initialValue, incrementSize); }
Makeshift (hard-coded) fix:
public class MsSql2012CustomDialect : MsSql2012Dialect { protected override string GetCreateSequenceString(string sequenceName, int initialValue, int incrementSize) { return string.Format("create sequence {0} as bigint start with {1} increment by {2}", sequenceName, initialValue, incrementSize); } }