summaryrefslogtreecommitdiff
path: root/myisam/mi_unique.c
diff options
context:
space:
mode:
authorunknown <ram@gw.udmsearch.izhnet.ru>2002-04-25 15:10:29 +0500
committerunknown <ram@gw.udmsearch.izhnet.ru>2002-04-25 15:10:29 +0500
commit3adee5046d70aa91fead16c289dd2a1b098b3dfd (patch)
treefae16eacfad983f202e51e4a4398875f00513543 /myisam/mi_unique.c
parent139a73cade4827ca2a41d6cfc9db379b2c696fa3 (diff)
downloadmariadb-git-3adee5046d70aa91fead16c289dd2a1b098b3dfd.tar.gz
MI_KEYSEG -> HA_KEYSEG
_mi_key_cmp -> ha_key_cmp BitKeeper/etc/logging_ok: Logging to logging@openlogging.org accepted
Diffstat (limited to 'myisam/mi_unique.c')
-rw-r--r--myisam/mi_unique.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/myisam/mi_unique.c b/myisam/mi_unique.c
index 5806502823a..629523ec69a 100644
--- a/myisam/mi_unique.c
+++ b/myisam/mi_unique.c
@@ -70,7 +70,7 @@ ha_checksum mi_unique_hash(MI_UNIQUEDEF *def, const byte *record)
{
const byte *pos, *end;
ha_checksum crc=0;
- MI_KEYSEG *keyseg;
+ HA_KEYSEG *keyseg;
for (keyseg=def->seg ; keyseg < def->end ; keyseg++)
{
@@ -122,7 +122,7 @@ int mi_unique_comp(MI_UNIQUEDEF *def, const byte *a, const byte *b,
my_bool null_are_equal)
{
const byte *pos_a, *pos_b, *end;
- MI_KEYSEG *keyseg;
+ HA_KEYSEG *keyseg;
for (keyseg=def->seg ; keyseg < def->end ; keyseg++)
{