summaryrefslogtreecommitdiff
path: root/sql/table.cc
diff options
context:
space:
mode:
authormonty@mashka.mysql.fi <>2002-07-23 02:08:48 +0300
committermonty@mashka.mysql.fi <>2002-07-23 02:08:48 +0300
commitf93cb632028d14aae970a98ad0caf734b40009b5 (patch)
tree93b9c6369d5c63c2009db5b84760aa1146a39993 /sql/table.cc
parentd909f4a5512fae74725141c66af0cc9a5e4a52e7 (diff)
downloadmariadb-git-f93cb632028d14aae970a98ad0caf734b40009b5.tar.gz
Fixed problem with auto_increment key as not first key part
Diffstat (limited to 'sql/table.cc')
-rw-r--r--sql/table.cc25
1 files changed, 14 insertions, 11 deletions
diff --git a/sql/table.cc b/sql/table.cc
index 66cbe7cfa16..4f71dacfa1d 100644
--- a/sql/table.cc
+++ b/sql/table.cc
@@ -346,17 +346,7 @@ int openfrm(const char *name, const char *alias, uint db_stat, uint prgflag,
}
}
if (reg_field->unireg_check == Field::NEXT_NUMBER)
- {
- if ((int) (outparam->next_number_index= (uint)
- find_ref_key(outparam,reg_field,
- &outparam->next_number_key_offset)) < 0)
- reg_field->unireg_check=Field::NONE; /* purecov: inspected */
- else
- {
- outparam->found_next_number_field=reg_field;
- reg_field->flags|=AUTO_INCREMENT_FLAG;
- }
- }
+ outparam->found_next_number_field= reg_field;
if (outparam->timestamp_field == reg_field)
outparam->timestamp_field_offset=i;
if (use_hash)
@@ -507,6 +497,19 @@ int openfrm(const char *name, const char *alias, uint db_stat, uint prgflag,
bfill(outparam->null_flags+outparam->rec_buff_length*2,null_length,255);
}
+ if ((reg_field=outparam->found_next_number_field))
+ {
+ if ((int) (outparam->next_number_index= (uint)
+ find_ref_key(outparam,reg_field,
+ &outparam->next_number_key_offset)) < 0)
+ {
+ reg_field->unireg_check=Field::NONE; /* purecov: inspected */
+ outparam->found_next_number_field=0;
+ }
+ else
+ reg_field->flags|=AUTO_INCREMENT_FLAG;
+ }
+
if (outparam->blob_fields)
{
Field **ptr;