diff options
author | monty@hundin.mysql.fi <> | 2001-11-07 00:08:57 +0200 |
---|---|---|
committer | monty@hundin.mysql.fi <> | 2001-11-07 00:08:57 +0200 |
commit | 4157d12df50c5fa1a759c078ddfd803338eab87d (patch) | |
tree | a361f84743de7a283f8326e8d6e267dbc7a8bc11 /myisam/mi_open.c | |
parent | 65d4c846d83467270e56537b2cd0f44fc37ef9be (diff) | |
download | mariadb-git-4157d12df50c5fa1a759c078ddfd803338eab87d.tar.gz |
Added missing mysqlbinlog to binary distributions.
Applied patch to mysqlhotcopy
Diffstat (limited to 'myisam/mi_open.c')
-rw-r--r-- | myisam/mi_open.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/myisam/mi_open.c b/myisam/mi_open.c index de1888bc9b7..626d51d18b7 100644 --- a/myisam/mi_open.c +++ b/myisam/mi_open.c @@ -292,15 +292,16 @@ MI_INFO *mi_open(const char *name, int mode, uint open_flags) } } } - if (share->keyinfo[i].flag & HA_FULLTEXT) /* SerG */ + if (share->keyinfo[i].flag & HA_FULLTEXT) { - share->keyinfo[i].seg=pos-FT_SEGS; /* SerG */ + share->keyinfo[i].seg=pos-FT_SEGS; share->fulltext_index=1; } share->keyinfo[i].end=pos; pos->type=HA_KEYTYPE_END; /* End */ pos->length=share->base.rec_reflength; pos->null_bit=0; + pos->flag=0; /* For purify */ pos++; } for (i=0 ; i < uniques ; i++) @@ -324,6 +325,7 @@ MI_INFO *mi_open(const char *name, int mode, uint open_flags) share->uniqueinfo[i].end=pos; pos->type=HA_KEYTYPE_END; /* End */ pos->null_bit=0; + pos->flag=0; pos++; } } |