surfacepipelinepass
Pipelinepipeline · returns table

PASS

Pass data through unchanged (no-op)

Table-in, table-out — composes downstream of SELECTs.

pipelinellmpipeline-composabletext

Syntax

THEN PASS

Arguments

nametypedescription
_tableTABLE

About

No-op pipeline stage that passes data through unchanged. Used in CHOOSE ELSE branches when no action is needed but the pipeline should continue with the original data. Usage in CHOOSE: THEN CHOOSE BY CLASSIFIER ( WHEN 'important' THEN PROCESS 'handle it' ELSE PASS ) THEN NEXT_STAGE -- receives original data unchanged

Examples

Leaves the incoming rows unchanged

SELECT
  *
FROM
  (
    VALUES
      (1),
      (2)
  ) AS t (x) THEN PASS THEN PYTHON (
    'result = pd.DataFrame({"sum_x":[int(df["x"].sum())]})'
  )

Nearby rabbit holes

same domain
Climb back to The Looking Glass