hotfix: join only joins two streams

pull/2275/head
Scott Anderson 2021-03-08 11:01:39 -07:00
parent f1c894ba48
commit a7948edf01
2 changed files with 3 additions and 3 deletions

View File

@ -1,7 +1,7 @@
---
title: join() function
description: >
The `join()` function merges two or more input streams into a single output stream
The `join()` function merges two input streams into a single output stream
based on columns with equal values.
aliases:
- /influxdb/cloud/reference/flux/functions/transformations/join

View File

@ -1,7 +1,7 @@
---
title: join() function
description: >
The `join()` function merges two or more input streams into a single output stream
The `join()` function merges two input streams into a single output stream
based on columns with equal values.
aliases:
- /influxdb/v2.0/reference/flux/functions/transformations/join
@ -16,7 +16,7 @@ related:
- /influxdb/v2.0/reference/flux/stdlib/built-in/transformations/union/
---
The `join()` function merges two or more input streams into a single output stream
The `join()` function merges two input streams into a single output stream
based on columns with equal values.
Null values are not considered equal when comparing column values.
The resulting schema is the union of the input schemas.