diff options
author | heikki@work.mysql.com <> | 2002-09-04 18:53:48 +0200 |
---|---|---|
committer | heikki@work.mysql.com <> | 2002-09-04 18:53:48 +0200 |
commit | a16f3360aa48d2b5e1a90525599e91ab5f84695e (patch) | |
tree | ef3cb267c01475b0d1b8c2385ecee59dcd84b7f4 /innobase/include/dict0dict.h | |
parent | 516cc0bd61e033c7068fa10a24cac4c71bc2490a (diff) | |
download | mariadb-git-a16f3360aa48d2b5e1a90525599e91ab5f84695e.tar.gz |
btr0btr.c Add more documentation about B-tree latching
ha_innodb.cc Remove gaps in auto-inc in multi-row inserts, more space for foreign key listings in SHOW TABLE STATUS, move resetting of active_trx to amore logical place
dict0dict.h Remove gaps from auto-inc sequence if errors in multi-row insert
dict0dict.c Remove gaps from auto-inc sequence if errors in multi-row insert
Diffstat (limited to 'innobase/include/dict0dict.h')
-rw-r--r-- | innobase/include/dict0dict.h | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/innobase/include/dict0dict.h b/innobase/include/dict0dict.h index 832654d2666..bf393210763 100644 --- a/innobase/include/dict0dict.h +++ b/innobase/include/dict0dict.h @@ -114,13 +114,11 @@ dict_table_autoinc_get( /* out: value for a new row, or 0 */ dict_table_t* table); /* in: table */ /************************************************************************ -Reads the autoinc counter value, 0 if not yet initialized. Does not -increment the counter. */ +Decrements the autoinc counter value by 1. */ -ib_longlong -dict_table_autoinc_read( -/*====================*/ - /* out: value of the counter */ +void +dict_table_autoinc_decrement( +/*=========================*/ dict_table_t* table); /* in: table */ /************************************************************************ Peeks the autoinc counter value, 0 if not yet initialized. Does not |