Drop ReviewDb group tables
Groups are now in NoteDb and the group tables in ReviewDb are no longer needed. Change-Id: I5fcff38aa88f2c62921f5bc9c891ba7299a67b33 Signed-off-by: Edwin Kempin <ekempin@google.com>
This commit is contained in:
parent
e0193a7c17
commit
6e4d4ca13e
@ -53,17 +53,13 @@ public interface ReviewDb extends Schema {
|
|||||||
|
|
||||||
// Deleted @Relation(id = 8)
|
// Deleted @Relation(id = 8)
|
||||||
|
|
||||||
@Relation(id = 10)
|
// Deleted @Relation(id = 10)
|
||||||
AccountGroupAccess accountGroups();
|
|
||||||
|
|
||||||
@Relation(id = 11)
|
// Deleted @Relation(id = 11)
|
||||||
AccountGroupNameAccess accountGroupNames();
|
|
||||||
|
|
||||||
@Relation(id = 12)
|
// Deleted @Relation(id = 12)
|
||||||
AccountGroupMemberAccess accountGroupMembers();
|
|
||||||
|
|
||||||
@Relation(id = 13)
|
// Deleted @Relation(id = 13)
|
||||||
AccountGroupMemberAuditAccess accountGroupMembersAudit();
|
|
||||||
|
|
||||||
// Deleted @Relation(id = 17)
|
// Deleted @Relation(id = 17)
|
||||||
|
|
||||||
@ -92,11 +88,9 @@ public interface ReviewDb extends Schema {
|
|||||||
|
|
||||||
// Deleted @Relation(id = 28)
|
// Deleted @Relation(id = 28)
|
||||||
|
|
||||||
@Relation(id = 29)
|
// Deleted @Relation(id = 29)
|
||||||
AccountGroupByIdAccess accountGroupById();
|
|
||||||
|
|
||||||
@Relation(id = 30)
|
// Deleted @Relation(id = 30)
|
||||||
AccountGroupByIdAudAccess accountGroupByIdAud();
|
|
||||||
|
|
||||||
int FIRST_ACCOUNT_ID = 1000000;
|
int FIRST_ACCOUNT_ID = 1000000;
|
||||||
|
|
||||||
|
@ -114,26 +114,6 @@ public class ReviewDbWrapper implements ReviewDb {
|
|||||||
return delegate.systemConfig();
|
return delegate.systemConfig();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
|
||||||
public AccountGroupAccess accountGroups() {
|
|
||||||
return delegate.accountGroups();
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public AccountGroupNameAccess accountGroupNames() {
|
|
||||||
return delegate.accountGroupNames();
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public AccountGroupMemberAccess accountGroupMembers() {
|
|
||||||
return delegate.accountGroupMembers();
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public AccountGroupMemberAuditAccess accountGroupMembersAudit() {
|
|
||||||
return delegate.accountGroupMembersAudit();
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public ChangeAccess changes() {
|
public ChangeAccess changes() {
|
||||||
return delegate.changes();
|
return delegate.changes();
|
||||||
@ -159,16 +139,6 @@ public class ReviewDbWrapper implements ReviewDb {
|
|||||||
return delegate.patchComments();
|
return delegate.patchComments();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
|
||||||
public AccountGroupByIdAccess accountGroupById() {
|
|
||||||
return delegate.accountGroupById();
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public AccountGroupByIdAudAccess accountGroupByIdAud() {
|
|
||||||
return delegate.accountGroupByIdAud();
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@SuppressWarnings("deprecation")
|
@SuppressWarnings("deprecation")
|
||||||
public int nextAccountId() throws OrmException {
|
public int nextAccountId() throws OrmException {
|
||||||
|
@ -35,7 +35,7 @@ import java.util.concurrent.TimeUnit;
|
|||||||
/** A version of the database schema. */
|
/** A version of the database schema. */
|
||||||
public abstract class SchemaVersion {
|
public abstract class SchemaVersion {
|
||||||
/** The current schema version. */
|
/** The current schema version. */
|
||||||
public static final Class<Schema_167> C = Schema_167.class;
|
public static final Class<Schema_168> C = Schema_168.class;
|
||||||
|
|
||||||
public static int getBinaryVersion() {
|
public static int getBinaryVersion() {
|
||||||
return guessVersion(C);
|
return guessVersion(C);
|
||||||
|
26
java/com/google/gerrit/server/schema/Schema_168.java
Normal file
26
java/com/google/gerrit/server/schema/Schema_168.java
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
// Copyright (C) 2018 The Android Open Source Project
|
||||||
|
//
|
||||||
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
// you may not use this file except in compliance with the License.
|
||||||
|
// You may obtain a copy of the License at
|
||||||
|
//
|
||||||
|
// http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
//
|
||||||
|
// Unless required by applicable law or agreed to in writing, software
|
||||||
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
// See the License for the specific language governing permissions and
|
||||||
|
// limitations under the License.
|
||||||
|
|
||||||
|
package com.google.gerrit.server.schema;
|
||||||
|
|
||||||
|
import com.google.inject.Inject;
|
||||||
|
import com.google.inject.Provider;
|
||||||
|
|
||||||
|
/** Drop group tables. */
|
||||||
|
public class Schema_168 extends SchemaVersion {
|
||||||
|
@Inject
|
||||||
|
Schema_168(Provider<Schema_167> prior) {
|
||||||
|
super(prior);
|
||||||
|
}
|
||||||
|
}
|
@ -14,12 +14,6 @@
|
|||||||
|
|
||||||
package com.google.gerrit.testing;
|
package com.google.gerrit.testing;
|
||||||
|
|
||||||
import com.google.gerrit.reviewdb.server.AccountGroupAccess;
|
|
||||||
import com.google.gerrit.reviewdb.server.AccountGroupByIdAccess;
|
|
||||||
import com.google.gerrit.reviewdb.server.AccountGroupByIdAudAccess;
|
|
||||||
import com.google.gerrit.reviewdb.server.AccountGroupMemberAccess;
|
|
||||||
import com.google.gerrit.reviewdb.server.AccountGroupMemberAuditAccess;
|
|
||||||
import com.google.gerrit.reviewdb.server.AccountGroupNameAccess;
|
|
||||||
import com.google.gerrit.reviewdb.server.ChangeAccess;
|
import com.google.gerrit.reviewdb.server.ChangeAccess;
|
||||||
import com.google.gerrit.reviewdb.server.ChangeMessageAccess;
|
import com.google.gerrit.reviewdb.server.ChangeMessageAccess;
|
||||||
import com.google.gerrit.reviewdb.server.PatchLineCommentAccess;
|
import com.google.gerrit.reviewdb.server.PatchLineCommentAccess;
|
||||||
@ -81,26 +75,6 @@ public class DisabledReviewDb implements ReviewDb {
|
|||||||
throw new Disabled();
|
throw new Disabled();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
|
||||||
public AccountGroupAccess accountGroups() {
|
|
||||||
throw new Disabled();
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public AccountGroupNameAccess accountGroupNames() {
|
|
||||||
throw new Disabled();
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public AccountGroupMemberAccess accountGroupMembers() {
|
|
||||||
throw new Disabled();
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public AccountGroupMemberAuditAccess accountGroupMembersAudit() {
|
|
||||||
throw new Disabled();
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public ChangeAccess changes() {
|
public ChangeAccess changes() {
|
||||||
throw new Disabled();
|
throw new Disabled();
|
||||||
@ -126,16 +100,6 @@ public class DisabledReviewDb implements ReviewDb {
|
|||||||
throw new Disabled();
|
throw new Disabled();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
|
||||||
public AccountGroupByIdAccess accountGroupById() {
|
|
||||||
throw new Disabled();
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public AccountGroupByIdAudAccess accountGroupByIdAud() {
|
|
||||||
throw new Disabled();
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int nextAccountId() {
|
public int nextAccountId() {
|
||||||
throw new Disabled();
|
throw new Disabled();
|
||||||
|
@ -35,6 +35,7 @@ import com.google.inject.Provider;
|
|||||||
import java.sql.Connection;
|
import java.sql.Connection;
|
||||||
import java.sql.PreparedStatement;
|
import java.sql.PreparedStatement;
|
||||||
import java.sql.ResultSet;
|
import java.sql.ResultSet;
|
||||||
|
import java.sql.Statement;
|
||||||
import java.sql.Timestamp;
|
import java.sql.Timestamp;
|
||||||
import java.time.Instant;
|
import java.time.Instant;
|
||||||
import java.time.LocalDateTime;
|
import java.time.LocalDateTime;
|
||||||
@ -72,6 +73,36 @@ public class Schema_150_to_151_Test {
|
|||||||
assume().that(db instanceof JdbcSchema).isTrue();
|
assume().that(db instanceof JdbcSchema).isTrue();
|
||||||
|
|
||||||
connection = ((JdbcSchema) db).getConnection();
|
connection = ((JdbcSchema) db).getConnection();
|
||||||
|
|
||||||
|
try (Statement stmt = connection.createStatement()) {
|
||||||
|
stmt.execute(
|
||||||
|
"CREATE TABLE account_groups ("
|
||||||
|
+ " group_uuid varchar(255) DEFAULT '' NOT NULL,"
|
||||||
|
+ " group_id INTEGER DEFAULT 0 NOT NULL,"
|
||||||
|
+ " name varchar(255) DEFAULT '' NOT NULL,"
|
||||||
|
+ " created_on TIMESTAMP,"
|
||||||
|
+ " description CLOB,"
|
||||||
|
+ " owner_group_uuid varchar(255) DEFAULT '' NOT NULL,"
|
||||||
|
+ " visible_to_all CHAR(1) DEFAULT 'N' NOT NULL"
|
||||||
|
+ ")");
|
||||||
|
|
||||||
|
stmt.execute(
|
||||||
|
"CREATE TABLE account_group_members ("
|
||||||
|
+ " group_id INTEGER DEFAULT 0 NOT NULL,"
|
||||||
|
+ " account_id INTEGER DEFAULT 0 NOT NULL"
|
||||||
|
+ ")");
|
||||||
|
|
||||||
|
stmt.execute(
|
||||||
|
"CREATE TABLE account_group_members_audit ("
|
||||||
|
+ " group_id INTEGER DEFAULT 0 NOT NULL,"
|
||||||
|
+ " account_id INTEGER DEFAULT 0 NOT NULL,"
|
||||||
|
+ " added_by INTEGER DEFAULT 0 NOT NULL,"
|
||||||
|
+ " added_on TIMESTAMP,"
|
||||||
|
+ " removed_by INTEGER,"
|
||||||
|
+ " removed_on TIMESTAMP"
|
||||||
|
+ ")");
|
||||||
|
}
|
||||||
|
|
||||||
createdOnRetrieval =
|
createdOnRetrieval =
|
||||||
connection.prepareStatement("SELECT created_on FROM account_groups WHERE group_id = ?");
|
connection.prepareStatement("SELECT created_on FROM account_groups WHERE group_id = ?");
|
||||||
createdOnUpdate =
|
createdOnUpdate =
|
||||||
|
@ -43,6 +43,7 @@ import com.google.gwtorm.jdbc.JdbcSchema;
|
|||||||
import com.google.inject.Inject;
|
import com.google.inject.Inject;
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.sql.PreparedStatement;
|
import java.sql.PreparedStatement;
|
||||||
|
import java.sql.Statement;
|
||||||
import org.eclipse.jgit.errors.ConfigInvalidException;
|
import org.eclipse.jgit.errors.ConfigInvalidException;
|
||||||
import org.eclipse.jgit.lib.Config;
|
import org.eclipse.jgit.lib.Config;
|
||||||
import org.eclipse.jgit.lib.ObjectId;
|
import org.eclipse.jgit.lib.ObjectId;
|
||||||
@ -77,8 +78,21 @@ public class Schema_166_to_167_WithGroupsInNoteDbTest {
|
|||||||
private JdbcSchema jdbcSchema;
|
private JdbcSchema jdbcSchema;
|
||||||
|
|
||||||
@Before
|
@Before
|
||||||
public void unwrapDb() {
|
public void initDb() throws Exception {
|
||||||
jdbcSchema = ReviewDbWrapper.unwrapJbdcSchema(db);
|
jdbcSchema = ReviewDbWrapper.unwrapJbdcSchema(db);
|
||||||
|
|
||||||
|
try (Statement stmt = jdbcSchema.getConnection().createStatement()) {
|
||||||
|
stmt.execute(
|
||||||
|
"CREATE TABLE account_groups ("
|
||||||
|
+ " group_uuid varchar(255) DEFAULT '' NOT NULL,"
|
||||||
|
+ " group_id INTEGER DEFAULT 0 NOT NULL,"
|
||||||
|
+ " name varchar(255) DEFAULT '' NOT NULL,"
|
||||||
|
+ " created_on TIMESTAMP,"
|
||||||
|
+ " description CLOB,"
|
||||||
|
+ " owner_group_uuid varchar(255) DEFAULT '' NOT NULL,"
|
||||||
|
+ " visible_to_all CHAR(1) DEFAULT 'N' NOT NULL"
|
||||||
|
+ ")");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
|
@ -135,8 +135,53 @@ public class Schema_166_to_167_WithGroupsInReviewDbTest {
|
|||||||
private JdbcSchema jdbcSchema;
|
private JdbcSchema jdbcSchema;
|
||||||
|
|
||||||
@Before
|
@Before
|
||||||
public void unwrapDb() {
|
public void initDb() throws Exception {
|
||||||
jdbcSchema = ReviewDbWrapper.unwrapJbdcSchema(db);
|
jdbcSchema = ReviewDbWrapper.unwrapJbdcSchema(db);
|
||||||
|
|
||||||
|
try (Statement stmt = jdbcSchema.getConnection().createStatement()) {
|
||||||
|
stmt.execute(
|
||||||
|
"CREATE TABLE account_groups ("
|
||||||
|
+ " group_uuid varchar(255) DEFAULT '' NOT NULL,"
|
||||||
|
+ " group_id INTEGER DEFAULT 0 NOT NULL,"
|
||||||
|
+ " name varchar(255) DEFAULT '' NOT NULL,"
|
||||||
|
+ " created_on TIMESTAMP,"
|
||||||
|
+ " description CLOB,"
|
||||||
|
+ " owner_group_uuid varchar(255) DEFAULT '' NOT NULL,"
|
||||||
|
+ " visible_to_all CHAR(1) DEFAULT 'N' NOT NULL"
|
||||||
|
+ ")");
|
||||||
|
|
||||||
|
stmt.execute(
|
||||||
|
"CREATE TABLE account_group_members ("
|
||||||
|
+ " group_id INTEGER DEFAULT 0 NOT NULL,"
|
||||||
|
+ " account_id INTEGER DEFAULT 0 NOT NULL"
|
||||||
|
+ ")");
|
||||||
|
|
||||||
|
stmt.execute(
|
||||||
|
"CREATE TABLE account_group_members_audit ("
|
||||||
|
+ " group_id INTEGER DEFAULT 0 NOT NULL,"
|
||||||
|
+ " account_id INTEGER DEFAULT 0 NOT NULL,"
|
||||||
|
+ " added_by INTEGER DEFAULT 0 NOT NULL,"
|
||||||
|
+ " added_on TIMESTAMP,"
|
||||||
|
+ " removed_by INTEGER,"
|
||||||
|
+ " removed_on TIMESTAMP"
|
||||||
|
+ ")");
|
||||||
|
|
||||||
|
stmt.execute(
|
||||||
|
"CREATE TABLE account_group_by_id ("
|
||||||
|
+ " group_id INTEGER DEFAULT 0 NOT NULL,"
|
||||||
|
+ " include_uuid VARCHAR(255) DEFAULT '' NOT NULL"
|
||||||
|
+ ")");
|
||||||
|
|
||||||
|
stmt.execute(
|
||||||
|
"CREATE TABLE account_group_by_id_aud ("
|
||||||
|
+ " group_id INTEGER DEFAULT 0 NOT NULL,"
|
||||||
|
+ " include_uuid VARCHAR(255) DEFAULT '' NOT NULL,"
|
||||||
|
+ " added_by INTEGER DEFAULT 0 NOT NULL,"
|
||||||
|
+ " added_on TIMESTAMP,"
|
||||||
|
+ " removed_by INTEGER,"
|
||||||
|
+ " removed_on TIMESTAMP"
|
||||||
|
+ ")");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Before
|
@Before
|
||||||
|
@ -4,20 +4,6 @@
|
|||||||
-- Indexes to support @Query
|
-- Indexes to support @Query
|
||||||
--
|
--
|
||||||
|
|
||||||
-- *********************************************************************
|
|
||||||
-- AccountGroupMemberAccess
|
|
||||||
-- @PrimaryKey covers: byAccount
|
|
||||||
CREATE INDEX account_group_members_byGroup
|
|
||||||
ON account_group_members (group_id);
|
|
||||||
|
|
||||||
|
|
||||||
-- *********************************************************************
|
|
||||||
-- AccountGroupByIdAccess
|
|
||||||
-- @PrimaryKey covers: byGroup
|
|
||||||
CREATE INDEX account_group_id_byInclude
|
|
||||||
ON account_group_by_id (include_uuid);
|
|
||||||
|
|
||||||
|
|
||||||
-- *********************************************************************
|
-- *********************************************************************
|
||||||
-- ApprovalCategoryAccess
|
-- ApprovalCategoryAccess
|
||||||
-- too small to bother indexing
|
-- too small to bother indexing
|
||||||
|
@ -5,21 +5,6 @@ delimiter #
|
|||||||
-- Indexes to support @Query
|
-- Indexes to support @Query
|
||||||
--
|
--
|
||||||
|
|
||||||
-- *********************************************************************
|
|
||||||
-- AccountGroupMemberAccess
|
|
||||||
-- @PrimaryKey covers: byAccount
|
|
||||||
CREATE INDEX account_group_members_byGroup
|
|
||||||
ON account_group_members (group_id)
|
|
||||||
#
|
|
||||||
|
|
||||||
-- *********************************************************************
|
|
||||||
-- AccountGroupIncludeByUuidAccess
|
|
||||||
-- @PrimaryKey covers: byGroup
|
|
||||||
CREATE INDEX acc_gr_incl_by_uuid_byInclude
|
|
||||||
ON account_group_by_id (include_uuid)
|
|
||||||
#
|
|
||||||
|
|
||||||
|
|
||||||
-- *********************************************************************
|
-- *********************************************************************
|
||||||
-- ApprovalCategoryAccess
|
-- ApprovalCategoryAccess
|
||||||
-- too small to bother indexing
|
-- too small to bother indexing
|
||||||
|
@ -51,20 +51,6 @@ delimiter ;
|
|||||||
-- Indexes to support @Query
|
-- Indexes to support @Query
|
||||||
--
|
--
|
||||||
|
|
||||||
-- *********************************************************************
|
|
||||||
-- AccountGroupMemberAccess
|
|
||||||
-- @PrimaryKey covers: byAccount
|
|
||||||
CREATE INDEX account_group_members_byGroup
|
|
||||||
ON account_group_members (group_id);
|
|
||||||
|
|
||||||
|
|
||||||
-- *********************************************************************
|
|
||||||
-- AccountGroupByIdAccess
|
|
||||||
-- @PrimaryKey covers: byGroup
|
|
||||||
CREATE INDEX account_group_id_byInclude
|
|
||||||
ON account_group_by_id (include_uuid);
|
|
||||||
|
|
||||||
|
|
||||||
-- *********************************************************************
|
-- *********************************************************************
|
||||||
-- ApprovalCategoryAccess
|
-- ApprovalCategoryAccess
|
||||||
-- too small to bother indexing
|
-- too small to bother indexing
|
||||||
|
Loading…
Reference in New Issue
Block a user