@xuda.io/runtime-bundle 1.0.727 → 1.0.728
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/js/xuda-runtime-bundle.js +18 -7
- package/js/xuda-runtime-bundle.min.js +1 -1
- package/js/xuda-runtime-slim.js +18 -7
- package/js/xuda-runtime-slim.min.es.js +18 -7
- package/js/xuda-runtime-slim.min.js +2 -2
- package/js/xuda-server-bundle.min.mjs +1 -1
- package/js/xuda-server-bundle.mjs +18 -6
- package/js/xuda-worker-bundle.js +18 -6
- package/js/xuda-worker-bundle.min.js +1 -1
- package/package.json +1 -1
|
@@ -27629,7 +27629,6 @@ func.UI.worker.add_to_queue = async function (SESSION_ID, source, functionP, par
|
|
|
27629
27629
|
obj.queue_key = queue_key;
|
|
27630
27630
|
|
|
27631
27631
|
let exist_job = UI_WORKER_OBJ.jobs.find((e) => {
|
|
27632
|
-
return false;
|
|
27633
27632
|
if (e.queue_key === queue_key) {
|
|
27634
27633
|
return e;
|
|
27635
27634
|
}
|
|
@@ -35035,16 +35034,28 @@ func.expression.get = async function (SESSION_ID, valP, dsSessionP, sourceP, row
|
|
|
35035
35034
|
EXP_BUSY = false;
|
|
35036
35035
|
}
|
|
35037
35036
|
|
|
35038
|
-
|
|
35037
|
+
const results = {
|
|
35039
35038
|
result: ret,
|
|
35040
|
-
fields
|
|
35041
|
-
res
|
|
35039
|
+
fields,
|
|
35040
|
+
res,
|
|
35042
35041
|
explain: result,
|
|
35043
|
-
error
|
|
35044
|
-
warning
|
|
35042
|
+
error,
|
|
35043
|
+
warning,
|
|
35045
35044
|
req: valP,
|
|
35046
|
-
var_error_found
|
|
35045
|
+
var_error_found,
|
|
35047
35046
|
};
|
|
35047
|
+
console.log('EXP>>>', results);
|
|
35048
|
+
return results;
|
|
35049
|
+
// return {
|
|
35050
|
+
// result: ret,
|
|
35051
|
+
// fields: fields,
|
|
35052
|
+
// res: res,
|
|
35053
|
+
// explain: result,
|
|
35054
|
+
// error: error,
|
|
35055
|
+
// warning: warning,
|
|
35056
|
+
// req: valP,
|
|
35057
|
+
// var_error_found: var_error_found,
|
|
35058
|
+
// };
|
|
35048
35059
|
};
|
|
35049
35060
|
const variable_not_exist = async function () {
|
|
35050
35061
|
try {
|