mirror of
https://github.com/sasjs/core.git
synced 2026-06-08 20:10:20 +00:00
feat: support for Viya Compute Tasks
This commit is contained in:
+6
-2
@@ -55,7 +55,7 @@
|
|||||||
,showmeta=N,maxobs=MAX,workobs=0
|
,showmeta=N,maxobs=MAX,workobs=0
|
||||||
);
|
);
|
||||||
%global _webin_file_count _webin_fileuri _debug _omittextlog _webin_name
|
%global _webin_file_count _webin_fileuri _debug _omittextlog _webin_name
|
||||||
sasjs_tables SYS_JES_JOB_URI;
|
sasjs_tables SYS_JES_JOB_URI _EXECUTIONTASKS;
|
||||||
%if %index("&_debug",log) %then %let _debug=131;
|
%if %index("&_debug",log) %then %let _debug=131;
|
||||||
|
|
||||||
%local i tempds table;
|
%local i tempds table;
|
||||||
@@ -110,8 +110,12 @@
|
|||||||
%end;
|
%end;
|
||||||
%else %do i=1 %to &_webin_file_count;
|
%else %do i=1 %to &_webin_file_count;
|
||||||
/* read in any files that are sent */
|
/* read in any files that are sent */
|
||||||
/* this part needs refactoring for wide files */
|
%if &_EXECUTIONTASKS=true %then %do;
|
||||||
|
filename indata "%sysfunc(pathname(&&_webin_fileref&i))" lrecl=999999;
|
||||||
|
%end;
|
||||||
|
%else %do;
|
||||||
filename indata filesrvc "&&_webin_fileuri&i" lrecl=999999;
|
filename indata filesrvc "&&_webin_fileuri&i" lrecl=999999;
|
||||||
|
%end;
|
||||||
data _null_;
|
data _null_;
|
||||||
infile indata termstr=crlf lrecl=32767;
|
infile indata termstr=crlf lrecl=32767;
|
||||||
input;
|
input;
|
||||||
|
|||||||
Reference in New Issue
Block a user