We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2b7f01e commit 4ebeb50Copy full SHA for 4ebeb50
src/main/java/org/radarcns/OffsetRangeFile.java
@@ -41,10 +41,10 @@
41
*/
42
public final class OffsetRangeFile {
43
private static final CsvSchema SCHEMA = CsvSchema.builder()
44
- .addColumn("topic")
45
- .addNumberColumn("partition")
46
- .addNumberColumn("offsetTo")
47
.addNumberColumn("offsetFrom")
+ .addNumberColumn("offsetTo")
+ .addNumberColumn("partition")
+ .addColumn("topic")
48
.build();
49
50
private static final CsvFactory CSV_FACTORY = new CsvFactory();
0 commit comments