Skip to content

Commit 2a88981

Browse files
authored
Do not PAD with Empty White Spaces Char Attributes (#572)
* Missing case * fix
1 parent a245bc4 commit 2a88981

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

java/src/main/java/com/genexus/db/driver/GXResultSet.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@ public String getString(int columnIndex, int length) throws SQLException
281281
{
282282
value = result.getString(columnIndex);
283283
if (result.wasNull() || value == null)
284-
value = CommonUtil.replicate(" ", length);
284+
value = "";
285285
else
286286
value = String.format(String.format("%%-%ds", length), value);
287287

0 commit comments

Comments
 (0)