Description
Doku (http://openjpa.apache.org/builds/2.2.1/apache-openjpa/docs/ref_guide_dbsetup_dbsupport.html) states:
TrimStringColumns: When true, the resulting String from ResultSet.getString will be trimmed of trailing white space. Defaults to false.
Instead of String.rtrim() the implementation calls String.trim() and removes leading whitespaces as well.
Please fix documentation and if possible add an additional property RTrimStringColumns which only trims trailing whitespaces.