It was replaced by value_type setting long time ago.
DEF_STR(value_field),
DEF_STR(value_type),
DEF_STR(expire_field),
- DEF_BOOL(value_hexblob),
{ 0, NULL, 0 }
};
return t_strdup_printf("Invalid value %s in value_type", types[i]);
}
} else {
- for (i = 0; i < ctx->cur_map.values_count; i++) {
- value_types[i] = ctx->cur_map.value_hexblob ?
- DICT_SQL_TYPE_HEXBLOB : DICT_SQL_TYPE_STRING;
- }
+ for (i = 0; i < ctx->cur_map.values_count; i++)
+ value_types[i] = DICT_SQL_TYPE_STRING;
}
ctx->cur_map.value_types = value_types;
const char *value_field;
const char *value_type;
const char *expire_field;
- bool value_hexblob;
/* SQL field names, one for each $ variable in the pattern */
ARRAY(struct dict_sql_field) pattern_fields;