Database |> Language |> Keywords |> 

RUN

The RUN keyword is what function invocations in pipe operator syntax are implicitly translated to. The below expression:

some_func <|> <|
FROM https://example.com
|> SELECT h1 AS example |

some_func

Is equivalent to the following expression:

some_func <|> <|
FROM https://example.com
|> SELECT h1 AS example |

RUN some_func