Skip to content

Commit

Permalink
test(HighlightInput): Add stories for DISTINCT
Browse files Browse the repository at this point in the history
  • Loading branch information
zane committed Oct 27, 2022
1 parent 3888457 commit c329e25
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions stories/HighlightInput.stories.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,16 @@ WHERE x > 0
LIMIT 10`,
};

export const DistinctTableExpression = Template.bind({});
DistinctTableExpression.args = {
value: `SELECT DISTINCT x FROM data`,
};

export const DistinctScalarExpression = Template.bind({});
DistinctScalarExpression.args = {
value: `DISTINCT SELECT x FROM data`,
};

export const ProbabilityOf = Template.bind({});
ProbabilityOf.args = {
value: `SELECT
Expand Down

0 comments on commit c329e25

Please sign in to comment.