Skip to content

Commit 2438fd7

Browse files
committed
fix:change the parameters type of two interfaces
1 parent 604e0d6 commit 2438fd7

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/Apache.IoTDB/SessionPool.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1836,7 +1836,7 @@ public async Task<int> ExecuteNonQueryStatementAsync(string sql)
18361836
_clients.Add(client);
18371837
}
18381838
}
1839-
public async Task<SessionDataSet> ExecuteRawDataQuery(List<string> paths, int startTime, int endTime)
1839+
public async Task<SessionDataSet> ExecuteRawDataQuery(List<string> paths, long startTime, long endTime)
18401840
{
18411841
TSExecuteStatementResp resp;
18421842
TSStatus status;
@@ -1887,7 +1887,7 @@ public async Task<SessionDataSet> ExecuteRawDataQuery(List<string> paths, int st
18871887

18881888
return sessionDataset;
18891889
}
1890-
public async Task<SessionDataSet> ExecuteLastDataQueryAsync(List<string> paths, int lastTime)
1890+
public async Task<SessionDataSet> ExecuteLastDataQueryAsync(List<string> paths, long lastTime)
18911891
{
18921892
TSExecuteStatementResp resp;
18931893
TSStatus status;

0 commit comments

Comments
 (0)