8000 Tags · trucnguyenlam/cockroach · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Tags: trucnguyenlam/cockroach

Tags

v2.2.0-alpha.20181217

Toggle v2.2.0-alpha.20181217's commit message
Merge cockroachdb#32774

32774: opt: Add Update support to CBO r=andy-kimball a=andy-kimball

Add a new Update operator to the CBO which is used to optimize the
UPDATE SQL statement. As part of compiling the UPDATE statement, the
optbuilder constructs an expression that outputs the existing values
for all rows from the target table that match the WHERE clause.
Additional column(s) that provide updated values are projected for
each of the SET expressions, as well as for any computed columns. For
example:
```
  CREATE TABLE abc (a INT PRIMARY KEY, b INT, c INT)
  UPDATE abc SET b=1 WHERE a=2
```
This would create an input expression similar to this SQL:
```
  SELECT a AS oa, b AS ob, c AS oc, 1 AS nb FROM abc WHERE a=2
```
The execution engine evaluates this relational expression and uses
the resulting values to form the KV keys and values.

Co-authored-by: Andrew Kimball <andyk@cockroachlabs.com>

v2.1.2

Toggle v2.1.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request cockroachdb#32853 from nvanbenschoten/backport2.1-…

…32773

release-2.1: storage: don't clear lastTxnMeta on WriteIntentError to different key

v2.0.7

Toggle v2.0.7's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request cockroachdb#32507 from knz/20181120-fix-32505

sql: catch invalid functions in the UPDATE SET RHS (v2.0.x)

v2.1.1

Toggle v2.1.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request cockroachdb#32318 from bdarnell/backport-disable-t…

…imebound

backport-2.1: batcheval: Disable time-bound iterators in KV commands

v2.2.0-alpha.20181119

Toggle v2.2.0-alpha.20181119's commit message
Merge cockroachdb#32211

32211: batcheval: Work around time-bound iterator bug in RefreshRange r=benesch a=bdarnell

Updates cockroachdb#28358
Fixes cockroachdb#31823

Release note (bug fix): Fix long stalls that can occur in contended
transactions.

Co-authored-by: Ben Darnell <ben@bendarnell.com>

v2.1.0

Toggle v2.1.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request cockroachdb#31841 from nvanbenschoten/backport2.1-…

…31837

release-2.1: closedts: bump kv.closed_timestamp.target_duration default

v2.1.0-rc.2

Toggle v2.1.0-rc.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request cockroachdb#31841 from nvanbenschoten/backport2.1-…

…31837

release-2.1: closedts: bump kv.closed_timestamp.target_duration default

v2.1.0-rc.1

Toggle v2.1.0-rc.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request cockroachdb#31520 from benesch/backport2.1-31516

release-2.1: c-deps: bump CryptoPP to avoid SIGTRAP on macOS

v2.1.0-beta.20181015

Toggle v2.1.0-beta.20181015's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request cockroachdb#31091 from solongordon/backport2.1-30216

release-2.1: distsql: eagerly evaluate constant expressions

v2.1.0-beta.20181008

Toggle v2.1.0-beta.20181008's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request cockroachdb#30808 from a-robinson/backport2.1-30747

release-2.1: cli: Mark zone command deprecated so it doesn't show up in help text
0