Skip to content

Commit

Permalink
workload/schemachanger: primary index detection is incorrect
Browse files Browse the repository at this point in the history
Fixes: #77885

Previously, the schemachanger workload incorrectly detected primary
indexes using their names checking for either the words
'pkey' or 'primary'. This approach was not correct and heuristic
in nature. To address this, this patch uses crdb_internal.table_indexes
to detect primary indexes.

Release note: None
  • Loading branch information
fqazi committed Mar 21, 2022
1 parent b3525c9 commit 5b3be20
Showing 1 changed file with 25 additions and 16 deletions.
41 changes: 25 additions & 16 deletions pkg/workload/schemachange/error_screening.go
Original file line number Diff line number Diff line change
Expand Up @@ -177,16 +177,22 @@ func (og *operationGenerator) colIsPrimaryKey(
ctx context.Context, tx pgx.Tx, tableName *tree.TableName, columnName string,
) (bool, error) {
primaryColumns, err := og.scanStringArray(ctx, tx,
`SELECT array_agg(column_name)
FROM (
SELECT DISTINCT column_name
FROM information_schema.statistics
WHERE (index_name = 'primary' OR index_name LIKE '%pkey%')
AND table_schema = $1
AND table_name = $2
AND storing = 'NO'
);
`, tableName.Schema(), tableName.Object())
`
SELECT array_agg(column_name)
FROM (
SELECT DISTINCT column_name
FROM information_schema.statistics
WHERE index_name
IN (
SELECT index_name
FROM crdb_internal.table_indexes
WHERE index_type = 'primary' AND descriptor_id = $3::REGCLASS
)
AND table_schema = $1
AND table_name = $2
AND storing = 'NO'
);
`, tableName.Schema(), tableName.Object(), tableName.String())
if err != nil {
return false, err
}
Expand Down Expand Up @@ -282,15 +288,18 @@ func (og *operationGenerator) tableHasPrimaryKeySwapActive(
indexName, err := og.scanStringArray(
ctx,
tx,
fmt.Sprintf(`
`
SELECT array_agg(index_name)
FROM (
SELECT index_name
FROM [SHOW INDEXES FROM %s]
WHERE index_name LIKE '%%_pkey%%'
LIMIT 1
SELECT
index_name
FROM
crdb_internal.table_indexes
WHERE
index_type = 'primary'
AND descriptor_id = $1::REGCLASS
);
`, tableName.String()),
`, tableName.String(),
)
if err != nil {
return err
Expand Down

0 comments on commit 5b3be20

Please sign in to comment.