1
0
mirror of https://github.com/sasjs/core.git synced 2026-01-03 15:40:05 +00:00

fix: avoiding type clash

This commit is contained in:
munja
2022-01-06 23:44:42 +01:00
parent cb07305a87
commit 545218e3b9
4 changed files with 40 additions and 14 deletions

View File

@@ -101,7 +101,6 @@ data _null_;
put ')/*/STORE SOURCE*/; ';
put '%local tempds colinfo fmtds i numcols; ';
put '%let numcols=0; ';
put '%let fmtds=_null_; ';
put ' ';
put '%if &action=OPEN %then %do; ';
put ' options nobomfile; ';
@@ -219,7 +218,12 @@ data _null_;
put ' format &&name&i $32767.; ';
put ' %end; ';
put ' %end; ';
put ' set &fmtds &ds; ';
put ' %if &fmt=Y %then %do; ';
put ' set &fmtds; ';
put ' %end; ';
put ' %else %do; ';
put ' set &ds; ';
put ' %end; ';
put ' format _numeric_ bart.; ';
put ' %do i=1 %to &numcols; ';
put ' %if &&typelong&i=char %then %do; ';