Skip to content

Commit 144ce87

Browse files
committed
fmtAll
1 parent 62cb05b commit 144ce87

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

Diff for: src/main/java/com/rawlabs/das/sdk/DASTable.java

+4-2
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,8 @@ default List<PathKey> getTablePathKeys() {
7878
* @param sortKeys sort keys to apply
7979
* @return a list of explanation lines
8080
*/
81-
default List<String> explain(List<Qual> quals, List<String> columns, List<SortKey> sortKeys, Long maybeLimit) {
81+
default List<String> explain(
82+
List<Qual> quals, List<String> columns, List<SortKey> sortKeys, Long maybeLimit) {
8283
return Collections.emptyList();
8384
}
8485

@@ -90,7 +91,8 @@ default List<String> explain(List<Qual> quals, List<String> columns, List<SortKe
9091
* @param sortKeys sort keys to apply
9192
* @return a closeable iterator of rows
9293
*/
93-
DASExecuteResult execute(List<Qual> quals, List<String> columns, List<SortKey> sortKeys, Long maybeLimit);
94+
DASExecuteResult execute(
95+
List<Qual> quals, List<String> columns, List<SortKey> sortKeys, Long maybeLimit);
9496

9597
/**
9698
* Unique column of the table, if any. This is used to identify rows in the table in case of

0 commit comments

Comments
 (0)