-
Notifications
You must be signed in to change notification settings - Fork 3.9k
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
docs: update SQL in the design document #9651
Conversation
A preliminary design can be found in the [Go source documentation](https://godoc.org/github.com/cockroachdb/cockroach/sql). | ||
# SQL | ||
|
||
Each node in a cluster can accept SQL client connections. It supports |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
s/It/CockroachDB/g
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done.
and SERIALIZABLE. The other traditional SQL isolation levels are | ||
not supported and there is no plan to implement them in the future. | ||
|
||
- CockroachDB implements its own SQL type system (cf. `typing.md`) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you provide a full link to typing.md
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done.
- CockroachDB exclusively implements MVCC-based consistency for | ||
transactions, and thus only supports SQL's isolation levels SNAPSHOT | ||
and SERIALIZABLE. The other traditional SQL isolation levels are | ||
not supported and there is no plan to implement them in the future. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
They are supported but internally always map to either SNAPSHOT or SERIALIZABLE.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done
and SERIALIZABLE. The other traditional SQL isolation levels are | ||
not supported and there is no plan to implement them in the future. | ||
|
||
- CockroachDB implements its own SQL type system (cf. `typing.md`) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Make this a link.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done
This change is