~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/function/num1.cc

  • Committer: Andrew Hutchings
  • Date: 2010-10-20 15:31:27 UTC
  • mto: This revision was merged to the branch mainline in revision 1907.
  • Revision ID: andrew@linuxjedi.co.uk-20101020153127-w9djuz9omzezg2kz
Add error message for global sort buffer constraint

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()