UNKNOWN rows are dropped and matching rows keep source order.
highlighted = computed this step
NULL input is dropped here
In this WHERE-style filter, NULL input gives UNKNOWN, and UNKNOWN is not kept.
UNKNOWN not kept
Read UNKNOWN and output rows
The compiler records 1 UNKNOWN row and 2 output rows in source order.
UNKNOWN rows=1
LIKE-pattern examples are tiny finite WHERE-style filters with a small SQL-like pattern subset; collations, escapes, dialect behavior, indexes, optimizer behavior, and product claims are out of scope.
Order is unchanged
Rows that match stay in the same order they had in the source table.
source order kept
Summary
LIKE filtering keeps TRUE rows, drops FALSE and UNKNOWN rows, and does not sort.