CREATE JOB function_operator_example ADD_MISSING_COLUMNS = true ASINSERT INTO default_glue_catalog.upsolver_samples.orders_transformed_data MAP_COLUMNS_BY_NAMESELECT orderid, nettotal,CEILING(nettotal) AS ceil_nettotalFROM default_glue_catalog.upsolver_samples.orders_raw_data WHERE $commit_time BETWEEN run_start_time() AND run_end_time()LIMIT3;