Details
-
Task
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Fixed
-
None
-
None
-
None
Description
For start, support AUTO_INCREMENT in a very basic way:
Maintain next_free_value number
- When opening the table, load it from the index
- Increase it whenever anybody reserves AUTO_INCREMENT values (regardless of whether they use them or not. InnoDB doesn't guarantee continutity, either)
- Also increase when writing a record: if (new_record.pk > next_free_value) { next_free_value= new_record.pk+1; }
next_free_value can be stored in TABLE_SHARE.
MyISAM supports auto_increment for columns that are not at key start. We will not support this.
InnoDB does some tricks related to binary logging. We will not do this.
Attachments
Issue Links
- is part of
-
MDEV-3841 LevelDB storage engine
-
- Closed
-
Activity
Status | Open [ 1 ] | In Progress [ 3 ] |
Resolution | Fixed [ 1 ] | |
Status | In Progress [ 3 ] | Closed [ 6 ] |
Workflow | defaullt [ 26049 ] | MariaDB v2 [ 45862 ] |
Workflow | MariaDB v2 [ 45862 ] | MariaDB v3 [ 66551 ] |
Workflow | MariaDB v3 [ 66551 ] | MariaDB v4 [ 132067 ] |
Basic auto_increment support is done.