We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b4c81a1 + e04fc13 commit 4307f02Copy full SHA for 4307f02
src/main/java/io/codenotary/immudb4j/sql/SQLValue.java
@@ -80,7 +80,7 @@ public SQLValue(Date value) {
80
if (value == null) {
81
builder.setNull(null);
82
} else {
83
- builder.setTs(TimeUnit.MICROSECONDS.toMicros(value.getTime()));
+ builder.setTs(TimeUnit.MILLISECONDS.toMicros(value.getTime()));
84
}
85
86
this.value = builder.build();
0 commit comments