Skip to content
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

Fix broken manual page #620

Merged
merged 1 commit into from
Sep 13, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions sql/mysql-compatibility.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,7 @@ The auto-increment ID feature in TiDB is only guaranteed to be automatically inc
>
> Assume that you have a table with the auto-increment ID:
>
> ```
> create table t(id int unique key auto_increment, c int);
> ```
> `create table t(id int unique key auto_increment, c int);`
>
> The principle of the auto-increment ID in TiDB is that each tidb-server instance caches a section of ID values (currently 30000 IDs are cached) for allocation and fetches the next section after this section is used up.
>
Expand Down