~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/function/num1.cc

  • Committer: Lee Bieber
  • Date: 2010-12-02 18:56:33 UTC
  • mfrom: (1966.3.1 bug683842)
  • mto: This revision was merged to the branch mainline in revision 1969.
  • Revision ID: kalebral@gmail.com-20101202185633-e27o1zhpev18dlsn
Merge Monty - fix bug 683842: remove generic catch blocks       

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 Sun Microsystems, Inc.
 
4
 *  Copyright (C) 2008 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
38
38
  case INT_RESULT:
39
39
    unsigned_flag= args[0]->unsigned_flag;
40
40
    break;
41
 
 
42
41
  case STRING_RESULT:
43
42
  case REAL_RESULT:
44
43
    hybrid_type= REAL_RESULT;
45
44
    max_length= float_length(decimals);
46
45
    break;
47
 
 
48
46
  case DECIMAL_RESULT:
49
47
    break;
50
 
 
51
 
  case ROW_RESULT:
 
48
  default:
52
49
    assert(0);
53
50
  }
 
51
  return;
54
52
}
55
53
 
56
54
void Item_func_num1::fix_num_length_and_dec()