~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/function/math/sqrt.h

  • Committer: Jay Pipes
  • Date: 2009-01-30 04:38:21 UTC
  • mto: This revision was merged to the branch mainline in revision 830.
  • Revision ID: jpipes@serialcoder-20090130043821-4d7jg2ftabefamxb
Fixes for the QUARTER() function to use new Temporal system and throw
errors on bad datetime values.

Added test case for QUARTER() function and modified func_time.test existing
test to correctly throw errors and report NULL, not 0 on NULL input.

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
18
18
 */
19
19
 
20
 
#ifndef DRIZZLED_FUNCTIONS_SQRT_H
21
 
#define DRIZZLED_FUNCTIONS_SQRT_H
 
20
#ifndef DRIZZLED_FUNCTION_MATH_SQRT_H
 
21
#define DRIZZLED_FUNCTION_MATH_SQRT_H
22
22
 
23
 
#include <drizzled/functions/func.h>
24
 
#include <drizzled/functions/dec.h>
 
23
#include <drizzled/function/func.h>
 
24
#include <drizzled/function/math/dec.h>
25
25
 
26
26
class Item_func_sqrt :public Item_dec_func
27
27
{
32
32
};
33
33
 
34
34
 
35
 
#endif /* DRIZZLED_FUNCTIONS_SQRT_H */
 
35
#endif /* DRIZZLED_FUNCTION_MATH_SQRT_H */