sql/moz-fx-data-shared-prod/udf/hr_employee_id_to_team/udf.sql (6 lines of code) (raw):
/*
This is a stub implementation for use with tests in this repo
Real implementation is in private-bigquery-etl
*/
CREATE OR REPLACE FUNCTION udf.hr_employee_id_to_team(employee_id STRING, team STRING)
RETURNS STRING AS (
'team'
);
SELECT
mozfun.assert.equals(udf.hr_employee_id_to_team('employee_id', 'team'), 'team');