libmdbsql: Support negative floating point literals

Fixes #274
This commit is contained in:
Evan Miller 2021-03-24 09:47:52 -04:00
parent d8a81c49a3
commit 58e4fe281d

View File

@ -109,7 +109,7 @@ strptime { return STRPTIME; }
return STRING;
}
(-*[0-9]+|([0-9]*\.[0-9]+)(e[-+]?[0-9]+)?) {
(-?[0-9]+|(-?[0-9]*\.[0-9]+)(e[-+]?[0-9]+)?) {
yylval->name = g_strdup(yytext); return NUMBER;
}
~?(\/?[a-z0-9\.\xa0-\xff]+)+ {