https://bugs.documentfoundation.org/show_bug.cgi?id=104986

--- Comment #13 from Tor Lillqvist <t...@iki.fi> ---
The problem is that Base for some reason seems to uses its SQL lexer and parser
to decide whether to pass words in SQL to the database engine as such or
quoted. Not sure why it works like that, but there must be some good
explanation, I guess.

Before the patch, what it actually passed to Firebird was:

select extract ( "weekday" from "DateTime" ) from "DateTime";

After the patch:

select extract ( weekday from "DateTime" ) from "DateTime";

(Or some such; from my memory.)

Just try the patch...

-- 
You are receiving this mail because:
You are the assignee for the bug.
_______________________________________________
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

Reply via email to