~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/myisam/mi_unique.cc

  • Committer: Monty Taylor
  • Date: 2010-12-24 02:13:05 UTC
  • mto: This revision was merged to the branch mainline in revision 2038.
  • Revision ID: mordred@inaugust.com-20101224021305-e3slv1cyjczqorij
Changed the bzrignore file.

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
 
12
12
   You should have received a copy of the GNU General Public License
13
13
   along with this program; if not, write to the Free Software
14
 
   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
 
14
   Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA */
15
15
 
16
16
/* Functions to check if a row is unique */
17
17
 
18
 
#include "myisamdef.h"
19
 
#include <mystrings/m_ctype.h>
20
 
 
21
 
bool mi_check_unique(MI_INFO *info, MI_UNIQUEDEF *def, unsigned char *record,
22
 
                        ha_checksum unique_hash, my_off_t disk_pos)
 
18
#include "myisam_priv.h"
 
19
#include "drizzled/charset_info.h"
 
20
 
 
21
using namespace drizzled;
 
22
 
 
23
bool mi_check_unique(MI_INFO *info,
 
24
                     MI_UNIQUEDEF *def,
 
25
                     unsigned char *record,
 
26
                     internal::ha_checksum unique_hash,
 
27
                     internal::my_off_t disk_pos)
23
28
{
24
 
  my_off_t lastpos=info->lastpos;
 
29
  internal::my_off_t lastpos=info->lastpos;
25
30
  MI_KEYDEF *key= &info->s->keyinfo[def->key];
26
31
  unsigned char *key_buff=info->lastkey2;
27
32
 
44
49
    if (info->lastpos != disk_pos &&
45
50
        !(*info->s->compare_unique)(info,def,record,info->lastpos))
46
51
    {
47
 
      my_errno=HA_ERR_FOUND_DUPP_UNIQUE;
 
52
      errno=HA_ERR_FOUND_DUPP_UNIQUE;
48
53
      info->errkey= (int) def->key;
49
54
      info->dupp_key_pos= info->lastpos;
50
55
      info->page_changed=1;                     /* Can't optimize read next */
71
76
    Add support for bit fields
72
77
*/
73
78
 
74
 
ha_checksum mi_unique_hash(MI_UNIQUEDEF *def, const unsigned char *record)
 
79
internal::ha_checksum mi_unique_hash(MI_UNIQUEDEF *def, const unsigned char *record)
75
80
{
76
81
  const unsigned char *pos, *end;
77
 
  ha_checksum crc= 0;
 
82
  internal::ha_checksum crc= 0;
78
83
  uint32_t seed1=0, seed2= 4;
79
84
  HA_KEYSEG *keyseg;
80
85
 
93
98
          done)
94
99
        */
95
100
        crc=((crc << 8) + 511+
96
 
             (crc >> (8*sizeof(ha_checksum)-8)));
 
101
             (crc >> (8*sizeof(internal::ha_checksum)-8)));
97
102
        continue;
98
103
      }
99
104
    }
126
131
      while (pos != end)
127
132
        crc=((crc << 8) +
128
133
             (((unsigned char)  *(unsigned char*) pos++))) +
129
 
          (crc >> (8*sizeof(ha_checksum)-8));
 
134
          (crc >> (8*sizeof(internal::ha_checksum)-8));
130
135
  }
131
136
  return crc;
132
137
}
152
157
  for (keyseg=def->seg ; keyseg < def->end ; keyseg++)
153
158
  {
154
159
    enum ha_base_keytype type=(enum ha_base_keytype) keyseg->type;
155
 
    uint32_t a_length, b_length;
 
160
    uint16_t a_length, b_length;
156
161
    a_length= b_length= keyseg->length;
157
162
 
158
163
    /* If part is NULL it's regarded as different */