bigquery-etl/tests/assert/true/udf.sql

4 строки
143 B
SQL

CREATE TEMP FUNCTION assert_true(actual ANY TYPE) AS (
IF(actual, TRUE, ERROR(CONCAT('Expected true, but got ', TO_JSON_STRING(actual))))
);