Skip to content

Commit

Permalink
fix usage name, and defaults for source model
Browse files Browse the repository at this point in the history
  • Loading branch information
cwensel committed Jul 18, 2023
1 parent 485d8f9 commit 8d65ebb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
*
*/
@CommandLine.Command(
name = "tessellate",
name = "tess",
mixinStandardHelpOptions = true,
version = "1.0-wip"
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public class Source implements Dataset, Model, HasManifest {
private List<URI> inputs = new ArrayList<>();
private Schema schema = new Schema();
private List<Partition> partitions = new ArrayList<>();
private boolean namedPartitions;
private boolean namedPartitions = true;
private LineOptions lines = new LineOptions();
private List<Field> select = new ArrayList<>();

Expand Down

0 comments on commit 8d65ebb

Please sign in to comment.