Skip to content

[HHH-19365]fix indention #29

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
Apr 28, 2025
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 @@ -603,5 +603,4 @@ public void visitStandardTableDelete(TableDeleteStandard tableDelete) {
public void visitCustomTableDelete(TableDeleteCustomSql tableDelete) {
throw new UnsupportedOperationException();
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
import java.util.ArrayList;
import java.util.List;


import org.hibernate.testing.orm.junit.DomainModel;
import org.hibernate.testing.orm.junit.JiraKey;
import org.hibernate.testing.orm.junit.SessionFactory;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,7 @@
StatelessSessionVersioningTest.UUIDVersioned.class})
@RequiresDialectFeature(feature = DialectFeatureChecks.SupportsIdentityColumns.class)
public class StatelessSessionVersioningTest {
@Test
void testIdentity(SessionFactoryScope scope) {
@Test void testIdentity(SessionFactoryScope scope) {
Dialect dialect = scope.getMetadataImplementor().getDatabase().getDialect();
scope.inStatelessTransaction(s -> {
IdentityVersioned v = new IdentityVersioned();
Expand Down
8 changes: 4 additions & 4 deletions local-build-plugins/src/main/groovy/local.databases.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -75,11 +75,11 @@ ext {
// 'jdbc.datasource' : 'org.postgresql.ds.PGSimpleDataSource',
'connection.init_sql' : ''
],
gaussdb : [
gaussdb: [
'db.dialect' : 'org.hibernate.dialect.GaussDBDialect',
'jdbc.driver' : 'com.huawei.gaussdb.jdbc.Driver',
'jdbc.user' : 'hibernate_orm_test',
'jdbc.pass' : 'Hibernate_orm_test@1234',
'jdbc.user' : 'hibernate_orm_test',
'jdbc.pass' : 'Hibernate_orm_test@1234',
// Disable prepared statement caching to avoid issues with changing schemas
// Make batch verification work, see https://bbs.huaweicloud.com/forum/thread-02104174303512776081-1-1.html
'jdbc.url' : 'jdbc:gaussdb://' + dbHost + '/hibernate_orm_test?currentSchema=test&preparedStatementCacheQueries=0&batchMode=off',
Expand Down Expand Up @@ -386,4 +386,4 @@ ext {
'jdbc.datasource' : 'Altibase.jdbc.driver.AltibaseDriver'
],
]
}
}