我有sql和udf函数可以很好地协同工作。
我想比较记录的日期,它是一个整数,并且在我的determineText()函数中具有yyyymmdd格式和今天的日期。
是否有类似console.log()或document.write()的方法,以便在bigquery中的udf函数中打印变量的值?
我的udf功能:
function myUdfFunction(row, emit) {
text = determineText(row.localdate);
emit({point_id: row.point_id, text: text});
}
function determineText(dateInteger){
var resultText = "";
var today = new Date();
var dd = today.getDate();
var mm = today.getMonth()+1; //January is 0!
var yyyy = today.getFullYear();
if(dd<10) {
dd='0'+dd
}
if(mm<10) {
mm='0'+mm
}
today = yyyy + mm + dd;
today = parseInt(today);
//console.log("today : "+today+"\ndateInteger : "+dateInteger); // not working
if (today == dateInteger)
resultText = "Okay";
else
resultText = "Not Okay";
return resultText;
}
bigquery.defineFunction(
'myUdfFunction',// Name of the function exported to SQL
['point_id', 'min_weight', 'localdate', 'temp_min', 'temp_max', 'precipitation', 'lat', 'lng'],// Names of input columns
// Output schema
[{'name': 'point_id', 'type': 'integer'},
{'name': 'text', 'type': 'string'}],
myUdfFunction// Reference to JavaScript UDF
);
答案 0 :(得分:2)
每https://cloud.google.com/bigquery/user-defined-functions#limitations
不支持DOM对象窗口,文档和节点以及需要它们的函数。
仍然,你需要什么 - 可以通过
轻松完成
1.在BigQuery之外测试你的UDF,或者
2.如果由于某种原因你需要在BigQuery中测试你的UDF,你可以使用 emit 函数输出任何东西作为输出的字段