docs/VictoriaLogs/LogsQL.md: add missing reference to pipes docs from join pipe docs

This is needed for consistency with other pipe docs

(cherry picked from commit d1af84a49d)
This commit is contained in:
Aliaksandr Valialkin 2024-11-06 20:59:19 +01:00 committed by hagen1778
parent 722873e18b
commit 4d5f364ad9
No known key found for this signature in database
GPG key ID: E92986095E0DD614

View file

@ -1787,7 +1787,7 @@ _time:5m | format if (ip:* and host:*) "request from <ip>:<host>" as message
### join pipe
The `| join by (<fields>) (<query>)` pipe joins the current results with the `<query>` results by the given set of comma-separated `<fields>`.
The `| join by (<fields>) (<query>)` [pipe](#pipes) joins the current results with the `<query>` results by the given set of comma-separated `<fields>`.
This pipe works in the following way:
1. It executes the `<query>` and remembers its' results. It may contain arbitrary [LogsQL query](https://docs.victoriametrics.com/victorialogs/logsql/).