Skip to content

Commit 0e8fe81

Browse files
committed
fix merge
1 parent 549c532 commit 0e8fe81

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

core/src/main/java/io/questdb/cairo/TxReader.java

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ public long getNextLogicalPartitionTimestamp(long timestamp) {
246246
return Long.MAX_VALUE;
247247
}
248248

249-
public long getNextPartitionTimestamp(long timestamp) {
249+
public long getNextExistingPartitionTimestamp(long timestamp) {
250250
if (partitionBy == PartitionBy.NONE) {
251251
return Long.MAX_VALUE;
252252
}
@@ -264,10 +264,6 @@ public long getNextPartitionTimestamp(long timestamp) {
264264
return Long.MAX_VALUE;
265265
}
266266

267-
public long getNextLogicalPartitionTimestamp(long timestamp) {
268-
return partitionCeilMethod.ceil(timestamp);
269-
}
270-
271267
public long getNextPartitionTimestamp(long timestamp) {
272268
if (partitionBy == PartitionBy.NONE) {
273269
return Long.MAX_VALUE;

0 commit comments

Comments
 (0)