1
0
mirror of https://github.com/sasjs/core.git synced 2025-12-11 06:24:35 +00:00

fix: special missing support in mp_ds2cards()

This commit is contained in:
Allan Bowe
2022-06-21 17:34:44 +00:00
parent ce39e4f779
commit 67f5c50300
3 changed files with 6 additions and 6 deletions

View File

@@ -12,8 +12,6 @@ What code changes have been made to achieve the intent.
## Checks ## Checks
- [ ] Code is formatted correctly (`npm run lint`). - [ ] Code is formatted correctly (`sasjs lint`).
- [ ] Any new functionality has been unit tested. - [ ] Any new functionality has been unit tested.
- [ ] All unit tests are passing (`npm test`). - [ ] All unit tests are passing (`sasjs test`).
- [ ] All CI checks are green.
- [ ] Reviewer is assigned.

View File

@@ -4803,7 +4803,7 @@ drop table &out_ds;
@cond @cond
**/ **/
%macro mp_ds2cards(base_ds=, tgt_ds= %macro mp_ds2cards(base_ds, tgt_ds=
,cards_file="%sysfunc(pathname(work))/cardgen.sas" ,cards_file="%sysfunc(pathname(work))/cardgen.sas"
,maxobs=max ,maxobs=max
,random_sample=NO ,random_sample=NO
@@ -5006,6 +5006,7 @@ data _null_;
; ;
%end; %end;
put ";"; put ";";
put 'missing a b c d e f g h i j k l m n o p q r s t u v w x y z _;';
put "datalines4;"; put "datalines4;";
end; end;
end; end;

View File

@@ -51,7 +51,7 @@
@cond @cond
**/ **/
%macro mp_ds2cards(base_ds=, tgt_ds= %macro mp_ds2cards(base_ds, tgt_ds=
,cards_file="%sysfunc(pathname(work))/cardgen.sas" ,cards_file="%sysfunc(pathname(work))/cardgen.sas"
,maxobs=max ,maxobs=max
,random_sample=NO ,random_sample=NO
@@ -254,6 +254,7 @@ data _null_;
; ;
%end; %end;
put ";"; put ";";
put 'missing a b c d e f g h i j k l m n o p q r s t u v w x y z _;';
put "datalines4;"; put "datalines4;";
end; end;
end; end;