Skip to content

Commit dea6aff

Browse files
authored
Merge pull request #91 from eedalong/fix/change-param-type
fix:change the parameters type of two interfaces
2 parents 604e0d6 + 2438fd7 commit dea6aff

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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)