~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/resolve_stack_dump.cc

  • 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:
41
41
 
42
42
static char* dump_fname = 0, *sym_fname = 0;
43
43
static DYNAMIC_ARRAY sym_table; /* how do you like this , static DYNAMIC ? */
44
 
static FILE* fp_dump, *fp_sym = 0, *fp_out; 
 
44
static FILE* fp_dump, *fp_sym = 0, *fp_out;
45
45
 
46
46
static struct my_option my_long_options[] =
47
47
{
96
96
 
97
97
 
98
98
static bool
99
 
get_one_option(int optid, const struct my_option *opt __attribute__((unused)),
100
 
               char *argument __attribute__((unused)))
 
99
get_one_option(int optid, const struct my_option *,
 
100
               char *)
101
101
{
102
102
  switch(optid) {
103
103
  case 'V':
173
173
    return c - '0';
174
174
  l = my_tolower(&my_charset_utf8_general_ci,c);
175
175
  if (l < 'a' || l > 'f')
176
 
    return HEX_INVALID; 
 
176
    return HEX_INVALID;
177
177
  return (unsigned char)10 + ((unsigned char)c - (unsigned char)'a');
178
178
}
179
179
 
186
186
  while((c = hex_val(*p++)) != HEX_INVALID)
187
187
      addr = (addr << 4) + c;
188
188
 
189
 
  *buf = p; 
 
189
  *buf = p;
190
190
  return addr;
191
191
}
192
192