/* Test table pattern matching */ /* Test table pattern matching */ test_table : { status: "placeholder", message: "test" }; result : when test_table is { status: "placeholder" } then "Placeholder detected" { status: "active" } then "Active state detected" _ then "Unknown state"; ..out result;