Skip to content

Commit

Permalink
Hash join description typo
Browse files Browse the repository at this point in the history
  • Loading branch information
pgiraud committed Aug 7, 2019
1 parent 2b32db3 commit 4b3e828
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/services/help-service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export const NODE_DESCRIPTIONS: INodeDescription = {
'MERGE JOIN': `merges two record sets by first sorting them on a <strong>join key</strong>.`,
'HASH': `generates a hash table from the records in the input recordset. Hash is used by
<strong>Hash Join</strong>.`,
'HASH JOIN': `joins to record sets by hashing one of them (using a <strong>Hash Scan</strong>).`,
'HASH JOIN': `joins two record sets by hashing one of them (using a <strong>Hash Scan</strong>).`,
'AGGREGATE': `groups records together based on a GROUP BY or aggregate function (like <code>sum()</code>).`,
'HASHAGGREGATE': `groups records together based on a GROUP BY or aggregate function (like sum()). Hash Aggregate uses
a hash to first organize the records by a key.`,
Expand Down

0 comments on commit 4b3e828

Please sign in to comment.