while running the following sql statement:
SELECT coalesce(date('2003-10-22','weekday 0'),'NULL');I crashed in the following function (date.c)
>> static int parseModifier(const char *zMod, DateTime *p){
>> int rc = 1;
>> int n;
>> double r;
>> char z[30];
>> for(n=0; n<sizeof(z)-1; n++){
>> z[n] = tolower(zMod[n]);
>> }.......The reason is that the loop runs on 29 characters while the string is "weekday 0".
So if you are using the date function I would recommend fixing it....
Avner
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

