File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
test/com/xxdb/compression Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 2
2
<modelVersion >4.0.0</modelVersion >
3
3
<groupId >com.dolphindb</groupId >
4
4
<artifactId >dolphindb-javaapi</artifactId >
5
- <version >1.30.22.3 -SNAPSHOT</version >
5
+ <version >1.30.22.4 -SNAPSHOT</version >
6
6
<packaging >jar</packaging >
7
7
8
8
<properties >
9
- <dolphindb .version>1.30.22.3 </dolphindb .version>
9
+ <dolphindb .version>1.30.22.4 </dolphindb .version>
10
10
</properties >
11
11
<name >DolphinDB Java API</name >
12
12
<description >The messaging and data conversion protocol between Java and DolphinDB server</description >
31
31
<connection >scm:git:git@github.com:dolphindb/api-java.git</connection >
32
32
<developerConnection >scm:git:git@github.com:dolphindb/api-java.git</developerConnection >
33
33
<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 >
35
35
</scm >
36
36
<dependencies >
37
37
<dependency >
Original file line number Diff line number Diff line change @@ -731,7 +731,7 @@ public void testCompressTime_before1970() throws Exception {
731
731
for (int i = 0 ; i < 100000 ; i ++) {
732
732
date [i ] = baseDate - i ;
733
733
timestamp [i ] = basicTimestamp -i ;
734
- month [i ]=basicMonth - i ;
734
+ month [i ]=basicMonth + i ;
735
735
nanotimestamp [i ]=basicNanoTimestamp -i ;
736
736
datetime [i ]=basicDateTime -i ;
737
737
}
@@ -752,7 +752,7 @@ public void testCompressTime_before1970() throws Exception {
752
752
//include null
753
753
int n =500000 ;
754
754
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 +")" );
756
756
BasicTimestampVector timestampv = (BasicTimestampVector ) conn .run ("1970.01.01 00:00:00.000 -(1.." +n +") join take(timestamp()," +n +")" );
757
757
BasicNanoTimestampVector nanotimestampv = (BasicNanoTimestampVector ) conn .run ("nanotimestamp(0) -rand(1.." +n +" ," +n +") join take(nanotimestamp()," +n +")" );
758
758
BasicDateTimeVector datetimev = (BasicDateTimeVector ) conn .run ("1970.01.01 00:00:00 - rand(1.." +n +" ," +n +") join take(datetime()," +n +")" );
You can’t perform that action at this time.
0 commit comments