Commit f2aefb5570cd54fd47c9a7666a69e8f835ec2992
Committed by
Andrew Shvayka
1 parent
106bcd8c
Fix for PostgreSQL Inserts logic
Showing
1 changed file
with
3 additions
and
3 deletions
@@ -85,10 +85,10 @@ public class PsqlInsertTsRepository extends AbstractInsertRepository implements | @@ -85,10 +85,10 @@ public class PsqlInsertTsRepository extends AbstractInsertRepository implements | ||
85 | } else { | 85 | } else { |
86 | ps.setNull(7, Types.DOUBLE); | 86 | ps.setNull(7, Types.DOUBLE); |
87 | ps.setNull(12, Types.DOUBLE); | 87 | ps.setNull(12, Types.DOUBLE); |
88 | - | ||
89 | - ps.setString(8, replaceNullChars(tsKvEntity.getJsonValue())); | ||
90 | - ps.setString(13, replaceNullChars(tsKvEntity.getJsonValue())); | ||
91 | } | 88 | } |
89 | + | ||
90 | + ps.setString(8, replaceNullChars(tsKvEntity.getJsonValue())); | ||
91 | + ps.setString(13, replaceNullChars(tsKvEntity.getJsonValue())); | ||
92 | } | 92 | } |
93 | 93 | ||
94 | @Override | 94 | @Override |