https://bugs.freedesktop.org/show_bug.cgi?id=32964

--- Comment #24 from Lionel Elie Mamane <[email protected]> ---
(In reply to comment #23)
> Lionel/Michael/Thorsten: could
> http://cgit.freedesktop.org/libreoffice/core/commit/
> ?id=60d2248aef20aa1363ef8624ff303c854c68dafe ("fixed java classpath
> parameter (required for gcj)") helped a bit here?

Possibly. Again, the codepath taken by gcj was different at the time I reported
the bug:


in function fillOrderStatement of
reportbuilder/java/com/sun/star/report/SDBCReportDataFactory.java:

  final XSingleSelectQueryComposer composer = getComposer(tools, command,
commandType);
  if (composer != null)
  {
    // This branch is taken by OpenJDK
    (...)
  }
  else
  {
    // This branch is taken by gcj
    (...)
    statement = "SELECT * FROM (" + command + ")"
    (...)
  }


So, if above patch causes gcj to take the "if" branch instead of the "else"
branch, it could fix this bug. But this needs to be tested. A few weeks ago,
LibreOffice Base / embedded HSQLDB would not run with gcj at all (see e.g.
http://lists.freedesktop.org/archives/libreoffice/2012-July/034921.html)...

-- 
You are receiving this mail because:
You are the assignee for the bug.
_______________________________________________
Libreoffice-bugs mailing list
[email protected]
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

Reply via email to