Changes SqlServer IdentifierProcessing to NONE.

Closes #914
This commit is contained in:
Jens Schauder
2021-01-21 10:46:37 +01:00
parent beebf696f8
commit 11a606618d

View File

@@ -15,6 +15,7 @@
*/
package org.springframework.data.relational.core.dialect;
import org.springframework.data.relational.core.sql.IdentifierProcessing;
import org.springframework.data.relational.core.sql.LockOptions;
import org.springframework.data.relational.core.sql.render.SelectRenderContext;
import org.springframework.data.util.Lazy;
@@ -24,6 +25,7 @@ import org.springframework.data.util.Lazy;
*
* @author Mark Paluch
* @author Myeonghyeon Lee
* @author Jens Schauder
* @since 1.1
*/
public class SqlServerDialect extends AbstractDialect {
@@ -143,4 +145,9 @@ public class SqlServerDialect extends AbstractDialect {
public SelectRenderContext getSelectContext() {
return selectRenderContext.get();
}
@Override
public IdentifierProcessing getIdentifierProcessing() {
return IdentifierProcessing.NONE;
}
}