Skip to content

Reduce breaking changes due to Ingres9 sequence support #1524

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jan 11, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions src/NHibernate/Dialect/Ingres9Dialect.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
using NHibernate.Id;
using NHibernate.SqlCommand;

namespace NHibernate.Dialect
Expand Down Expand Up @@ -40,6 +41,16 @@ public override bool SupportsLimitOffset
/// <inheritdoc />
public override string QuerySequencesString => "select seq_name from iisequences";

/// <inheritdoc />
// 6.0 TODO: remove override for having default behavior when sequences are supported.
// It has been put for minimizing breaking changes due to supporting sequences in 5.1.
public override System.Type IdentityStyleIdentifierGeneratorClass => typeof(TriggerIdentityGenerator);

/// <inheritdoc />
// 6.0 TODO: remove override for having default behavior when sequences are supported.
// It has been put for minimizing breaking changes due to supporting sequences in 5.1.
public override System.Type NativeIdentifierGeneratorClass => typeof(TableHiLoGenerator);

/// <summary>
/// Attempts to add a <c>LIMIT</c> clause to the given SQL <c>SELECT</c>.
/// Expects any database-specific offset and limit adjustments to have already been performed (ex. UseMaxForLimit, OffsetStartsAtOne).
Expand Down