~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/create_field.cc

  • Committer: Brian Aker
  • Date: 2010-12-18 10:14:05 UTC
  • mfrom: (2008.1.3 clean)
  • Revision ID: brian@tangent.org-20101218101405-qjbse29shi9coklg
Merge of user identifier work

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
2
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
3
3
 *
4
 
 *  Copyright (C) 2008-2009 Sun Microsystems, Inc.
 
4
 *  Copyright (C) 2008-2009 Sun Microsystems
5
5
 *
6
6
 *  This program is free software; you can redistribute it and/or modify
7
7
 *  it under the terms of the GNU General Public License as published by
21
21
 * @file Implementation of CreateField class
22
22
 */
23
23
 
24
 
#include <config.h>
 
24
#include "config.h"
25
25
#include <errno.h>
26
26
#include <float.h>
27
 
#include <drizzled/sql_select.h>
28
 
#include <drizzled/error.h>
29
 
#include <drizzled/field.h>
30
 
#include <drizzled/create_field.h>
31
 
#include <drizzled/field/str.h>
32
 
#include <drizzled/field/num.h>
33
 
#include <drizzled/field/blob.h>
34
 
#include <drizzled/field/boolean.h>
35
 
#include <drizzled/field/enum.h>
36
 
#include <drizzled/field/null.h>
37
 
#include <drizzled/field/date.h>
38
 
#include <drizzled/field/decimal.h>
39
 
#include <drizzled/field/real.h>
40
 
#include <drizzled/field/double.h>
41
 
#include <drizzled/field/int32.h>
42
 
#include <drizzled/field/int64.h>
43
 
#include <drizzled/field/num.h>
44
 
#include <drizzled/field/epoch.h>
45
 
#include <drizzled/field/datetime.h>
46
 
#include <drizzled/field/varstring.h>
47
 
#include <drizzled/field/uuid.h>
48
 
#include <drizzled/temporal.h>
49
 
#include <drizzled/item/string.h>
50
 
#include <drizzled/table.h>
51
 
 
52
 
#include <drizzled/display.h>
 
27
#include "drizzled/sql_select.h"
 
28
#include "drizzled/error.h"
 
29
#include "drizzled/field.h"
 
30
#include "drizzled/create_field.h"
 
31
#include "drizzled/field/str.h"
 
32
#include "drizzled/field/num.h"
 
33
#include "drizzled/field/blob.h"
 
34
#include "drizzled/field/enum.h"
 
35
#include "drizzled/field/null.h"
 
36
#include "drizzled/field/date.h"
 
37
#include "drizzled/field/decimal.h"
 
38
#include "drizzled/field/real.h"
 
39
#include "drizzled/field/double.h"
 
40
#include "drizzled/field/int32.h"
 
41
#include "drizzled/field/int64.h"
 
42
#include "drizzled/field/num.h"
 
43
#include "drizzled/field/timestamp.h"
 
44
#include "drizzled/field/datetime.h"
 
45
#include "drizzled/field/varstring.h"
 
46
#include "drizzled/field/uuid.h"
 
47
#include "drizzled/temporal.h"
 
48
#include "drizzled/item/string.h"
53
49
 
54
50
#include <algorithm>
55
51
 
75
71
 
76
72
  /* Fix if the original table had 4 byte pointer blobs */
77
73
  if (flags & BLOB_FLAG)
78
 
  {
79
 
    pack_length= (pack_length - old_field->getTable()->getShare()->sizeBlobPtr() + portable_sizeof_char_ptr);
80
 
  }
 
74
    pack_length= (pack_length - old_field->getTable()->getShare()->blob_ptr_size + portable_sizeof_char_ptr);
81
75
 
82
76
  switch (sql_type) 
83
77
  {
105
99
  if (!(flags & (NO_DEFAULT_VALUE_FLAG)) &&
106
100
      !(flags & AUTO_INCREMENT_FLAG) &&
107
101
      old_field->ptr && orig_field &&
108
 
      (not old_field->is_timestamp() ||                /* set def only if */
 
102
      (sql_type != DRIZZLE_TYPE_TIMESTAMP ||                /* set def only if */
109
103
       old_field->getTable()->timestamp_field != old_field ||  /* timestamp field */
110
104
       unireg_check == Field::TIMESTAMP_UN_FIELD))        /* has default val */
111
105
  {
146
140
      break;
147
141
    case DRIZZLE_TYPE_DECIMAL:
148
142
      key_length= pack_length=
149
 
        class_decimal_get_binary_size(class_decimal_length_to_precision(length,
 
143
        my_decimal_get_binary_size(my_decimal_length_to_precision(length,
150
144
                  decimals,
151
145
                  flags &
152
146
                  UNSIGNED_FLAG),
221
215
  interval= 0;
222
216
  pack_length= key_length= 0;
223
217
  charset= fld_charset;
224
 
  interval_list.clear();
 
218
  interval_list.empty();
225
219
 
226
220
  comment= *fld_comment;
227
221
 
230
224
    it is NOT NULL, not an AUTO_INCREMENT field and not a TIMESTAMP.
231
225
  */
232
226
  if (!fld_default_value && !(fld_type_modifier & AUTO_INCREMENT_FLAG) &&
233
 
      (fld_type_modifier & NOT_NULL_FLAG) && (fld_type != DRIZZLE_TYPE_TIMESTAMP and fld_type != DRIZZLE_TYPE_MICROTIME))
234
 
  {
 
227
      (fld_type_modifier & NOT_NULL_FLAG) && fld_type != DRIZZLE_TYPE_TIMESTAMP)
235
228
    flags|= NO_DEFAULT_VALUE_FLAG;
236
 
  }
237
229
 
238
230
  if (fld_length && !(length= (uint32_t) atoi(fld_length)))
239
231
    fld_length= 0;
254
246
    case DRIZZLE_TYPE_NULL:
255
247
      break;
256
248
    case DRIZZLE_TYPE_DECIMAL:
257
 
      class_decimal_trim(&length, &decimals);
 
249
      my_decimal_trim(&length, &decimals);
258
250
      if (length > DECIMAL_MAX_PRECISION)
259
251
      {
260
252
        my_error(ER_TOO_BIG_PRECISION, MYF(0), length, fld_name,
266
258
        my_error(ER_M_BIGGER_THAN_D, MYF(0), fld_name);
267
259
        return(true);
268
260
      }
269
 
      length= class_decimal_precision_to_length(length, decimals, fld_type_modifier & UNSIGNED_FLAG);
270
 
      pack_length= class_decimal_get_binary_size(length, decimals);
 
261
      length= my_decimal_precision_to_length(length, decimals, fld_type_modifier & UNSIGNED_FLAG);
 
262
      pack_length= my_decimal_get_binary_size(length, decimals);
271
263
      break;
272
264
    case DRIZZLE_TYPE_VARCHAR:
273
265
      /*
305
297
        return(true);
306
298
      }
307
299
      break;
308
 
    case DRIZZLE_TYPE_MICROTIME:
309
 
      /* 
310
 
        This assert() should be correct due to absence of length
311
 
        specifiers for timestamp. Previous manipulation also wasn't
312
 
        ever called (from examining lcov)
313
 
      */
314
 
      assert(fld_type);
315
300
    case DRIZZLE_TYPE_TIMESTAMP:
316
 
      length= MicroTimestamp::MAX_STRING_LENGTH;
317
 
 
 
301
      if (!fld_length)
 
302
      {
 
303
        length= DateTime::MAX_STRING_LENGTH;
 
304
      }
 
305
 
 
306
      /* This assert() should be correct due to absence of length
 
307
         specifiers for timestamp. Previous manipulation also wasn't
 
308
         ever called (from examining lcov)
 
309
      */
 
310
      assert(length == (uint32_t)DateTime::MAX_STRING_LENGTH);
 
311
 
 
312
      flags|= UNSIGNED_FLAG;
318
313
      if (fld_default_value)
319
314
      {
320
315
        /* Grammar allows only NOW() value for ON UPDATE clause */
330
325
          def= 0;
331
326
        }
332
327
        else
333
 
        {
334
328
          unireg_check= (fld_on_update_value ? Field::TIMESTAMP_UN_FIELD:
335
 
                         Field::NONE);
336
 
        }
 
329
                                              Field::NONE);
337
330
      }
338
331
      else
339
332
      {
361
354
    case DRIZZLE_TYPE_UUID:
362
355
      length= field::Uuid::max_string_length();
363
356
      break;
364
 
    case DRIZZLE_TYPE_BOOLEAN:
365
 
      length= field::Boolean::max_string_length();
366
 
      break;
367
357
    case DRIZZLE_TYPE_DATETIME:
368
358
      length= DateTime::MAX_STRING_LENGTH;
369
359
      break;
370
 
    case DRIZZLE_TYPE_TIME:
371
 
      length= DateTime::MAX_STRING_LENGTH;
372
 
      break;
373
360
    case DRIZZLE_TYPE_ENUM:
374
361
      {
375
362
        /* Should be safe. */
376
363
        pack_length= 4;
377
364
 
378
 
        List<String>::iterator it(fld_interval_list->begin());
 
365
        List_iterator<String> it(*fld_interval_list);
379
366
        String *tmp;
380
367
        while ((tmp= it++))
381
368
          interval_list.push_back(tmp);
407
394
  return false; /* success */
408
395
}
409
396
 
410
 
std::ostream& operator<<(std::ostream& output, const CreateField &field)
411
 
{
412
 
  output << "CreateField:(";
413
 
  output <<  field.field_name;
414
 
  output << ", ";
415
 
  output << drizzled::display::type(field.type());
416
 
  output << ", { ";
417
 
 
418
 
  if (field.flags & NOT_NULL_FLAG)
419
 
    output << " NOT_NULL";
420
 
 
421
 
  if (field.flags & PRI_KEY_FLAG)
422
 
    output << ", PRIMARY KEY";
423
 
 
424
 
  if (field.flags & UNIQUE_KEY_FLAG)
425
 
    output << ", UNIQUE KEY";
426
 
 
427
 
  if (field.flags & MULTIPLE_KEY_FLAG)
428
 
    output << ", MULTIPLE KEY";
429
 
 
430
 
  if (field.flags & BLOB_FLAG)
431
 
    output << ", BLOB";
432
 
 
433
 
  if (field.flags & UNSIGNED_FLAG)
434
 
    output << ", UNSIGNED";
435
 
 
436
 
  if (field.flags & BINARY_FLAG)
437
 
    output << ", BINARY";
438
 
  output << "}, ";
439
 
  if (field.field)
440
 
    output << *field.field;
441
 
  output << ")";
442
 
 
443
 
  return output;  // for multiple << operators.
444
 
}
445
 
 
446
397
} /* namespace drizzled */