Details
-
Improvement
-
Resolution: Unresolved
-
Minor
-
None
-
6.3
-
None
-
Unknown
-
Description
I guess this is a "wontfix" as the following is actually standard SQL behaviour, but I guess I report it anyway, so it is documented:
If adding first a page 'Test.WebHome' and then a page 'Test .WebHome', (with a space after the 'Test'), then this will create two different spaces, but only 'Test' will be returned in $xwiki.getSpaces() . This happens both with HSQL and MySQL.
The reason for this behaviour is that string comparision in SQL ignores trailing whitespace, if the collation is "PAD SPACE" and e.g. all MySQL collations are of that type (see e.g. http://dev.mysql.com/doc/refman/5.7/en/char.html ).
That causes the HQL statement select distinct doc.space from XWikiDocument doc order by doc.space asc only to return one of the spaces 'Test' and 'Test ', as they are not distinct from the SQL-point of view.
Additionally the space index for 'Test' shows both 'WebHome'.
however if one deletes the 'Test'-space, the 'Test .WebHome' remains, and need to be deleted separately. I recently heard from users who were confused by this. (They added the two different spaces by accident, and were unaware that they had two different spaces.)
A possible "fix" would be to forbid adding spaces with trailing spaces, or just trim these spaces - at least in the UI. That might even depend on a configuration variable, because if one uses a DB collation with "NO PAD" semantics, one might want to see these two different spaces. (that DB would not be MySQL then, as MySQL does not support this ...)
If this is not an acceptable fix, however, then please close this as Wontfix.
Attachments
Issue Links
- is related to
-
XWIKI-6145 Prevent trailing spaces on document names
- Open
- relates to
-
XWIKI-14354 Pages with and without trailing whitespaces are not returned properly when unique pages are requested on MySQL
- Open
-
XWIKI-18525 Renaming a page with trailing whitespace causes a broken link in the navigation panel to appear
- Closed
-
XWIKI-14448 XWiki Apps urls should be created in lowercases
- Open