Skip to content

Commit d6a0fab

Browse files
author
lucaijun
committed
Merge remote-tracking branch 'origin/release130' into release130
2 parents 56f9cfc + 11f0d41 commit d6a0fab

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
<modelVersion>4.0.0</modelVersion>
33
<groupId>com.dolphindb</groupId>
44
<artifactId>dolphindb-javaapi</artifactId>
5-
<version>1.30.22.3-SNAPSHOT</version>
5+
<version>1.30.22.4-SNAPSHOT</version>
66
<packaging>jar</packaging>
77

88
<properties>
9-
<dolphindb.version>1.30.22.3</dolphindb.version>
9+
<dolphindb.version>1.30.22.4</dolphindb.version>
1010
</properties>
1111
<name>DolphinDB Java API</name>
1212
<description>The messaging and data conversion protocol between Java and DolphinDB server</description>
@@ -31,7 +31,7 @@
3131
<connection>scm:git:git@github.com:dolphindb/api-java.git</connection>
3232
<developerConnection>scm:git:git@github.com:dolphindb/api-java.git</developerConnection>
3333
<url>git@github.com:dolphindb/api-java.git</url>
34-
<tag>api-java-1.30.22.3</tag>
34+
<tag>api-java-1.30.22.4</tag>
3535
</scm>
3636
<dependencies>
3737
<dependency>

test/com/xxdb/compression/ServerCompressionTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -731,7 +731,7 @@ public void testCompressTime_before1970() throws Exception {
731731
for (int i = 0; i < 100000; i++) {
732732
date[i] = baseDate - i;
733733
timestamp[i] = basicTimestamp -i;
734-
month[i]=basicMonth - i;
734+
month[i]=basicMonth + i;
735735
nanotimestamp[i]=basicNanoTimestamp-i;
736736
datetime[i]=basicDateTime-i;
737737
}
@@ -752,7 +752,7 @@ public void testCompressTime_before1970() throws Exception {
752752
//include null
753753
int n=500000;
754754
BasicDateVector datev = (BasicDateVector) conn.run("1970.01.01 -(1.."+n+") join take(date(),"+n+")");
755-
BasicMonthVector monthv = (BasicMonthVector) conn.run("1970.01M -(1.."+n+") join take(month(),"+n+")");
755+
BasicMonthVector monthv = (BasicMonthVector) conn.run("1970.01M +(1.."+n+") join take(month(),"+n+")");
756756
BasicTimestampVector timestampv = (BasicTimestampVector) conn.run("1970.01.01 00:00:00.000 -(1.."+n+") join take(timestamp(),"+n+")");
757757
BasicNanoTimestampVector nanotimestampv = (BasicNanoTimestampVector) conn.run("nanotimestamp(0) -rand(1.."+n+" ,"+n+") join take(nanotimestamp(),"+n+")");
758758
BasicDateTimeVector datetimev = (BasicDateTimeVector) conn.run("1970.01.01 00:00:00 - rand(1.."+n+" ,"+n+") join take(datetime(),"+n+")");

0 commit comments

Comments
 (0)