Add support for DATA_CHAR type in bound literals in the SQL parser.

This commit is contained in:
osku 2006-05-10 06:37:13 +00:00
parent 847adf32cf
commit 300ad47fbe

View file

@ -207,6 +207,13 @@ sym_tab_add_bound_lit(
*lit_type = PARS_STR_LIT;
break;
case DATA_CHAR:
ut_a(blit->length > 0);
len = blit->length;
*lit_type = PARS_STR_LIT;
break;
case DATA_INT:
ut_a(blit->length > 0);
ut_a(blit->length <= 8);