~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/dynamic_array.h

  • Committer: Jay Pipes
  • Date: 2009-03-16 15:20:27 UTC
  • mto: (934.3.7 mordred)
  • mto: This revision was merged to the branch mainline in revision 938.
  • Revision ID: jpipes@serialcoder-20090316152027-njlreaim8vxqta6c
Fixes ENUM field type to throw an error on bad data input.  0 is now not
allowed on insertion.  MySQL allows 0, in the manual it states 0 is "the
null string error index" whatever that means.  Drizzle doesn't allow it.

Corrected test cases.

Also cleans up indentation on JOIN::exec() which was bothering me.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* - mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
 
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
3
 
 *
4
 
 *  Copyright (C) 2008 MySQL
5
 
 *
6
 
 *  This program is free software; you can redistribute it and/or modify
7
 
 *  it under the terms of the GNU General Public License as published by
8
 
 *  the Free Software Foundation; either version 2 of the License, or
9
 
 *  (at your option) any later version.
10
 
 *
11
 
 *  This program is distributed in the hope that it will be useful,
12
 
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
 
 *  GNU General Public License for more details.
15
 
 *
16
 
 *  You should have received a copy of the GNU General Public License
17
 
 *  along with this program; if not, write to the Free Software
18
 
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19
 
 */
20
 
 
21
 
#ifndef DRIZZLED_DYNAMIC_ARRAY_H
22
 
#define DRIZZLED_DYNAMIC_ARRAY_H
23
 
 
24
 
#include <stddef.h>
25
 
 
26
 
namespace drizzled
27
 
{
28
 
 
29
 
typedef struct st_dynamic_array
30
 
{
31
 
  unsigned char *buffer;
32
 
  size_t elements,max_element;
33
 
  uint32_t alloc_increment;
34
 
  uint32_t size_of_element;
35
 
} DYNAMIC_ARRAY;
36
 
 
37
 
#define my_init_dynamic_array(A,B,C,D) init_dynamic_array2(A,B,NULL,C,D)
38
 
#define my_init_dynamic_array_ci(A,B,C,D) init_dynamic_array2(A,B,NULL,C,D)
39
 
 
40
 
extern bool init_dynamic_array2(DYNAMIC_ARRAY *array,uint32_t element_size,
41
 
                                   void *init_buffer, uint32_t init_alloc,
42
 
                                   uint32_t alloc_increment);
43
 
/* init_dynamic_array() function is deprecated */
44
 
extern bool init_dynamic_array(DYNAMIC_ARRAY *array,uint32_t element_size,
45
 
                                  uint32_t init_alloc,uint32_t alloc_increment);
46
 
extern bool insert_dynamic(DYNAMIC_ARRAY *array,unsigned char * element);
47
 
extern unsigned char *alloc_dynamic(DYNAMIC_ARRAY *array);
48
 
extern unsigned char *pop_dynamic(DYNAMIC_ARRAY*);
49
 
extern bool set_dynamic(DYNAMIC_ARRAY *array,unsigned char * element,uint32_t array_index);
50
 
extern void get_dynamic(DYNAMIC_ARRAY *array,unsigned char * element,uint32_t array_index);
51
 
extern void delete_dynamic(DYNAMIC_ARRAY *array);
52
 
extern void delete_dynamic_element(DYNAMIC_ARRAY *array, uint32_t array_index);
53
 
extern void freeze_size(DYNAMIC_ARRAY *array);
54
 
extern int  get_index_dynamic(DYNAMIC_ARRAY *array, unsigned char * element);
55
 
#define dynamic_array_ptr(array,array_index) ((array)->buffer+(array_index)*(array)->size_of_element)
56
 
#define dynamic_element(array,array_index,type) ((type)((array)->buffer) +(array_index))
57
 
#define push_dynamic(A,B) insert_dynamic((A),(B))
58
 
#define reset_dynamic(array) ((array)->elements= 0)
59
 
#define sort_dynamic(A,cmp) my_qsort((A)->buffer, (A)->elements, (A)->size_of_element, (cmp))
60
 
 
61
 
} /* namespace drizzled */
62
 
 
63
 
#endif /* DRIZZLED_DYNAMIC_ARRAY_H */