version 2.1

Recompiled due to new version of %generatePackage()

inner macro pagesize=MAX added
This commit is contained in:
yabwon
2020-06-08 08:22:48 +02:00
parent f1f88c3ca7
commit cbdc0b167f
3 changed files with 6 additions and 2 deletions

View File

@@ -18,7 +18,7 @@
/* inner macro */
%MACRO dsSQL_Inner() / secure;
%local query tempfile1 tempfile2;
%local query tempfile1 tempfile2 ps_tmp;
%let query = %superq(query_arg);
%let query = %sysfunc(dequote(&query));
@@ -29,6 +29,9 @@
filename &tempfile1. temp;
filename &tempfile2. temp;
%let ps_tmp = %sysfunc(getoption(ps));
options ps = MAX;
proc printto log = &tempfile1.;
run;
/* get the query shape i.e. the executed one */
@@ -38,6 +41,7 @@
quit;
proc printto;
run;
options ps = &ps_tmp.;
%put *** executed as ***;
data _null_;