Skip to content

Commit

Permalink
Merge pull request #131019 from cockroachdb/blathers/backport-release…
Browse files Browse the repository at this point in the history
…-24.2-130725

release-24.2: opt: do not include virtual computed columns in lock columns
  • Loading branch information
mgartner committed Sep 20, 2024
2 parents 74b34cb + e238fe1 commit 41acf38
Show file tree
Hide file tree
Showing 11 changed files with 379 additions and 5 deletions.
25 changes: 25 additions & 0 deletions pkg/ccl/logictestccl/testdata/logic_test/read_committed
Original file line number Diff line number Diff line change
Expand Up @@ -536,3 +536,28 @@ user testuser

statement ok
COMMIT

subtest regression_130661

statement ok
CREATE TABLE t130661 (
id INT PRIMARY KEY NOT NULL,
i INT NOT NULL,
v INT AS (i + 1) VIRTUAL NOT NULL,
FAMILY (id),
FAMILY (i)
)

statement ok
INSERT INTO t130661 VALUES (1, 10)

statement ok
BEGIN TRANSACTION ISOLATION LEVEL READ COMMITTED

statement ok
SELECT * FROM t130661 WHERE id = 1 FOR UPDATE

statement ok
COMMIT

subtest end
16 changes: 14 additions & 2 deletions pkg/sql/logictest/logic.go
Original file line number Diff line number Diff line change
Expand Up @@ -3502,11 +3502,18 @@ func (t *logicTest) execStatement(stmt logicStatement) (bool, error) {
return t.finishExecStatement(stmt, execSQL, res, err)
}

var uniqueHashPattern = regexp.MustCompile(`UNIQUE.*USING\s+HASH`)

func (t *logicTest) finishExecStatement(
stmt logicStatement, execSQL string, res gosql.Result, err error,
) (bool, error) {
if err == nil {
sqlutils.VerifyStatementPrettyRoundtrip(t.t(), stmt.sql)
// TODO(#65929, #107398): Roundtrips for unique, hash-sharded indexes do
// not work because only unique hash-sharded indexes are allowed, yet we
// format them as unique constraints.
if !uniqueHashPattern.MatchString(stmt.sql) {
sqlutils.VerifyStatementPrettyRoundtrip(t.t(), stmt.sql)
}
}
if err == nil && stmt.expectCount >= 0 {
var count int64
Expand Down Expand Up @@ -3589,7 +3596,12 @@ func (t *logicTest) execQuery(query logicQuery) error {

func (t *logicTest) finishExecQuery(query logicQuery, rows *gosql.Rows, err error) error {
if err == nil {
sqlutils.VerifyStatementPrettyRoundtrip(t.t(), query.sql)
// TODO(#65929, #107398): Roundtrips for unique, hash-sharded indexes do
// not work because only unique hash-sharded indexes are allowed, yet we
// format them as unique constraints.
if !uniqueHashPattern.MatchString(query.sql) {
sqlutils.VerifyStatementPrettyRoundtrip(t.t(), query.sql)
}

// If expecting an error, then read all result rows, since some errors are
// only triggered after initial rows are returned.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ query T
EXPLAIN (OPT) SELECT aisle FROM supermarket WHERE person = 'matilda' FOR UPDATE
----
lock supermarket
├── key columns: person
├── lock columns: (7-10)
├── locking: for-update,durability-guaranteed
└── scan supermarket
└── constraint: /1: [/'matilda' - /'matilda']
Expand Down Expand Up @@ -57,6 +59,8 @@ update supermarket
└── subquery
└── project
└── lock supermarket
├── key columns: person
├── lock columns: (19-22)
├── locking: for-update,durability-guaranteed
└── scan supermarket
└── constraint: /13: [/'matilda' - /'matilda']
Expand Down Expand Up @@ -119,6 +123,8 @@ SELECT aisle + 1 FROM s
with &1 (s)
├── project
│ └── lock supermarket
│ ├── key columns: person
│ ├── lock columns: (7-10)
│ ├── locking: for-update,durability-guaranteed
│ └── scan supermarket
│ └── constraint: /1: [/'matilda' - /'matilda']
Expand Down Expand Up @@ -182,6 +188,8 @@ with &1 (names)
├── values
│ └── ('matilda',)
└── lock supermarket
├── key columns: supermarket.person
├── lock columns: (9-12)
├── locking: for-update,durability-guaranteed
└── project
└── inner-join (lookup supermarket)
Expand Down Expand Up @@ -254,6 +262,8 @@ SELECT aisle
FOR UPDATE
----
lock supermarket
├── key columns: person
├── lock columns: (7-10)
├── locking: for-update,durability-guaranteed
└── project
└── index-join supermarket
Expand Down Expand Up @@ -309,6 +319,8 @@ SELECT aisle
FOR UPDATE
----
lock supermarket
├── key columns: person
├── lock columns: (7-10)
├── locking: for-update,durability-guaranteed
└── project
└── inner-join (lookup supermarket)
Expand Down
2 changes: 2 additions & 0 deletions pkg/sql/opt/memo/expr_format.go
Original file line number Diff line number Diff line change
Expand Up @@ -702,6 +702,8 @@ func (f *ExprFmtCtx) formatRelational(e RelExpr, tp treeprinter.Node) {
}

case *LockExpr:
f.formatColList(tp, "key columns:", t.KeyCols, opt.ColSet{} /* notNullCols */)
tp.Childf("lock columns: %v", t.LockCols)
f.formatLocking(tp, t.Locking)

case *WithExpr:
Expand Down
16 changes: 16 additions & 0 deletions pkg/sql/opt/norm/testdata/rules/limit
Original file line number Diff line number Diff line change
Expand Up @@ -1600,6 +1600,8 @@ SELECT * FROM abcde WHERE d IS NULL LIMIT 1 FOR UPDATE
----
lock abcde
├── columns: a:1!null b:2 c:3!null d:4 e:5
├── key columns: a:1
├── lock columns: (8-12)
├── locking: for-update
├── cardinality: [0 - 1]
├── volatile, mutations
Expand All @@ -1621,6 +1623,8 @@ SELECT * FROM abcde WHERE d IS NULL OFFSET 1 FOR UPDATE
----
lock abcde
├── columns: a:1!null b:2 c:3!null d:4 e:5
├── key columns: a:1
├── lock columns: (8-12)
├── locking: for-update
├── volatile, mutations
├── key: (1)
Expand Down Expand Up @@ -1652,6 +1656,8 @@ limit
├── fd: ()-->(1-5)
├── lock abcde
│ ├── columns: a:1!null b:2 c:3!null d:4 e:5
│ ├── key columns: a:1
│ ├── lock columns: (8-12)
│ ├── locking: for-update,skip-locked
│ ├── volatile, mutations
│ ├── key: (1)
Expand Down Expand Up @@ -1682,6 +1688,8 @@ offset
├── key: (1)
├── lock abcde
│ ├── columns: a:1!null
│ ├── key columns: a:1
│ ├── lock columns: (8-12)
│ ├── locking: for-update,skip-locked
│ ├── volatile, mutations
│ ├── key: (1)
Expand Down Expand Up @@ -1710,6 +1718,8 @@ SELECT * FROM abcde WHERE d IS NULL LIMIT 1 FOR UPDATE
----
lock abcde
├── columns: a:1!null b:2 c:3!null d:4 e:5
├── key columns: a:1
├── lock columns: (8-12)
├── locking: for-update,durability-guaranteed
├── cardinality: [0 - 1]
├── volatile, mutations
Expand All @@ -1731,6 +1741,8 @@ SELECT * FROM abcde WHERE d IS NULL OFFSET 1 FOR UPDATE
----
lock abcde
├── columns: a:1!null b:2 c:3!null d:4 e:5
├── key columns: a:1
├── lock columns: (8-12)
├── locking: for-update,durability-guaranteed
├── volatile, mutations
├── key: (1)
Expand Down Expand Up @@ -1762,6 +1774,8 @@ limit
├── fd: ()-->(1-5)
├── lock abcde
│ ├── columns: a:1!null b:2 c:3!null d:4 e:5
│ ├── key columns: a:1
│ ├── lock columns: (8-12)
│ ├── locking: for-update,skip-locked,durability-guaranteed
│ ├── volatile, mutations
│ ├── key: (1)
Expand Down Expand Up @@ -1793,6 +1807,8 @@ offset
├── fd: ()-->(4), (1)-->(2,3,5)
├── lock abcde
│ ├── columns: a:1!null b:2 c:3!null d:4 e:5
│ ├── key columns: a:1
│ ├── lock columns: (8-12)
│ ├── locking: for-update,skip-locked,durability-guaranteed
│ ├── volatile, mutations
│ ├── key: (1)
Expand Down
2 changes: 2 additions & 0 deletions pkg/sql/opt/norm/testdata/rules/mutation
Original file line number Diff line number Diff line change
Expand Up @@ -359,6 +359,8 @@ SELECT a FROM t WHERE a = 1 FOR SHARE;
----
lock t
├── columns: a:2!null [hidden: k:1!null]
├── key columns: k:1
├── lock columns: (12-20)
├── locking: for-share
├── volatile, mutations
├── key: (1)
Expand Down
8 changes: 5 additions & 3 deletions pkg/sql/opt/optbuilder/locking.go
Original file line number Diff line number Diff line change
Expand Up @@ -435,16 +435,18 @@ func (b *Builder) buildLock(lb *lockBuilder, locking opt.Locking, inScope *scope
newTabID := md.DuplicateTable(lb.table, b.factory.RemapCols)
newTab := md.Table(newTabID)
// Add remapped columns for the new table reference. For now we lock all
// column families of the primary index of the table, so include all ordinary
// and mutation columns.
// non-virtual columns of all families of the primary index of the table, so
// include all ordinary and mutation columns.
ordinals := tableOrdinals(newTab, columnKinds{
includeMutations: true,
includeSystem: false,
includeInverted: false,
})
var lockCols opt.ColSet
for _, ord := range ordinals {
lockCols.Add(newTabID.ColumnID(ord))
if !tab.Column(ord).IsVirtualComputed() {
lockCols.Add(newTabID.ColumnID(ord))
}
}
private := &memo.LockPrivate{
Table: newTabID,
Expand Down
35 changes: 35 additions & 0 deletions pkg/sql/opt/optbuilder/testdata/read-committed
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# Tests for read-committed isolation level.

exec-ddl
CREATE TABLE t130661 (
id INT PRIMARY KEY,
i INT NOT NULL,
v INT AS (i + 10) VIRTUAL NOT NULL
)
----

# Regression test for #130661. The lock columns should not include virtual
# computed columns (in this case the column with ID 8).
build isolation=ReadCommitted
SELECT * FROM t130661 WHERE id = 1 FOR UPDATE
----
lock t130661
├── columns: id:1!null i:2!null v:3!null
├── key columns: id:1
├── lock columns: (6,7)
├── locking: for-update,durability-guaranteed
└── project
├── columns: id:1!null i:2!null v:3!null
└── select
├── columns: id:1!null i:2!null v:3!null crdb_internal_mvcc_timestamp:4 tableoid:5
├── project
│ ├── columns: v:3!null id:1!null i:2!null crdb_internal_mvcc_timestamp:4 tableoid:5
│ ├── scan t130661
│ │ ├── columns: id:1!null i:2!null crdb_internal_mvcc_timestamp:4 tableoid:5
│ │ └── computed column expressions
│ │ └── v:3
│ │ └── i:2 + 10
│ └── projections
│ └── i:2 + 10 [as=v:3]
└── filters
└── id:1 = 1
Loading

0 comments on commit 41acf38

Please sign in to comment.