Skip to content
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,10 @@

/**
* A {@linkplain Dialect SQL dialect} for Azure SQL Server.
*
* @deprecated Use {@link SQLServerDialect} instead.
*/
@Deprecated(forRemoval = true)
public class AzureSQLServerDialect extends SQLServerDialect {

public AzureSQLServerDialect() {
Expand Down
4 changes: 4 additions & 0 deletions migration-guide.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,10 @@ See the link:{releaseSeriesBase}#whats-new[website] for the list of new features

This section describes changes to contracts (classes, interfaces, methods, etc.) which are considered https://hibernate.org/community/compatibility-policy/#api[API].

* `org.hibernate.dialect.AzureSQLServerDialect` was deprecated. Use `org.hibernate.dialect.SQLServerDialect` instead.
If you set `hibernate.boot.allow_jdbc_metadata_access=false` for offline startup,
remember to also set the targeted database version through `jakarta.persistence.database-product-version`;
this would be 16.0 for SQL Server 2022 or 17.0 for SQL Server 2025.

// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
// SPI changes
Expand Down
Loading