~jaypipes/drizzle/split-xa-resource-manager

« back to all changes in this revision

Viewing changes to drizzled/function/time/from_days.cc

  • Committer: Jay Pipes
  • Date: 2010-02-06 01:51:20 UTC
  • mfrom: (1273.1.10 build)
  • Revision ID: jpipes@serialcoder-20100206015120-as4vb638inbzrb59
Merge trunk changes and resolve conflicts

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
#include <sstream>
26
26
#include <string>
27
27
 
 
28
namespace drizzled
 
29
{
 
30
 
28
31
/**
29
32
 * Interpret the first argument as a Julian Day Number and fill
30
33
 * our supplied temporal object.
31
34
 */
32
 
bool Item_func_from_days::get_temporal(drizzled::Date &to)
 
35
bool Item_func_from_days::get_temporal(Date &to)
33
36
{
34
37
  assert(fixed);
35
38
 
60
63
  }
61
64
  return true;
62
65
}
 
66
 
 
67
} /* namespace drizzled */