Skip to content

Commit

Permalink
updated comment on config option
Browse files Browse the repository at this point in the history
Signed-off-by: Matthias Broecheler <mbroecheler@users.noreply.github.com>
  • Loading branch information
mbroecheler committed Nov 26, 2024
1 parent f8b15ce commit 8b23519
Showing 1 changed file with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,13 @@ public class ExplainConfigImpl implements PackageJson.ExplainConfig {
@Default
boolean physical = false;
/**
* This setting is primarily used for testing to ensure that the output of explain is
* deterministic
* Sorts the nodes in the DAG by id (i.e. their internal name).
* This is set to true by default to ensure a deterministic order of the DAG plan
* that can be used for testing.
* Set to false if you need the original DAG order.
*/
@Default
boolean sorted = true; //TODO: set to false and overwrite in test case injector
boolean sorted = true;

public ExplainConfigImpl(SqrlConfig sqrlConfig) {
this(
Expand Down

0 comments on commit 8b23519

Please sign in to comment.