https://bugs.documentfoundation.org/show_bug.cgi?id=143656
--- Comment #10 from Robert Großkopf <[email protected]> --- (In reply to Julien Nabet from comment #8) > (gdb) p _rSQL > $4 = "SELECT * FROM \"Person\" WHERE \"Name\" LIKE '%*'" > (gdb) n > 486 return m_xAggregateStatement->execute( sSQL ); > (gdb) p sSQL > $5 = "SELECT * FROM \"Person\" WHERE \"Name\" LIKE '%%'" This is the reason for the buggy behavior: Not the Escaping, but the function, which returns '%%' instead of '%*'. -- You are receiving this mail because: You are the assignee for the bug.
