Fix for PostgreSQL Inserts logic

This commit is contained in:
Andrii Shvaika 2020-02-21 15:46:41 +02:00 committed by Andrew Shvayka
parent 106bcd8cc0
commit f2aefb5570

View File

@ -85,11 +85,11 @@ public class PsqlInsertTsRepository extends AbstractInsertRepository implements
} else {
ps.setNull(7, Types.DOUBLE);
ps.setNull(12, Types.DOUBLE);
}
ps.setString(8, replaceNullChars(tsKvEntity.getJsonValue()));
ps.setString(13, replaceNullChars(tsKvEntity.getJsonValue()));
}
}
@Override
public int getBatchSize() {