Commit f2aefb5570cd54fd47c9a7666a69e8f835ec2992

Authored by Andrii Shvaika
Committed by Andrew Shvayka
1 parent 106bcd8c

Fix for PostgreSQL Inserts logic

... ... @@ -85,10 +85,10 @@ public class PsqlInsertTsRepository extends AbstractInsertRepository implements
85 85 } else {
86 86 ps.setNull(7, Types.DOUBLE);
87 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 94 @Override
... ...