Skip to content

Commit

Permalink
Address review concerns
Browse files Browse the repository at this point in the history
  • Loading branch information
yanghua committed Jan 2, 2025
1 parent 062a3c2 commit af19a6a
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,12 @@
import java.util.ArrayList;
import java.util.List;

/**
* Represents a list of SQL expressions. Each expression has a name and an expression string. Name:
* is used to refer to the new column name. Expression: SQL expression strings. These strings can
* reference existing columns in the dataset. The expression would be calculated as the value of new
* column.
*/
public class SqlExpressions {

private final List<SqlExpression> sqlExpressions;
Expand Down

0 comments on commit af19a6a

Please sign in to comment.