Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(qualify) 标签行字符串被截断 #49

Merged
merged 1 commit into from
Jul 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion gbk/qualify.sas
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ Version Date: 2023-03-08 1.0.1
2024-06-13 1.0.20
2024-06-14 1.0.21
2024-07-10 1.0.22
2024-07-19 1.0.23
===================================
*/

Expand Down Expand Up @@ -731,7 +732,7 @@ Version Date: 2023-03-08 1.0.1
/*3. ������ݼ�*/
proc sql noprint;
select max(length) into : column_item_len_max from DICTIONARY.COLUMNS where libname = "WORK" and
memname in (%do i = 1 %to &var_level_n; "TMP_QUALIFY_OUTDATA_LEVEL_&i" %end;) and
memname in ("TMP_QUALIFY_OUTDATA_LABEL" %do i = 1 %to &var_level_n; "TMP_QUALIFY_OUTDATA_LEVEL_&i" %end;) and
name = "ITEM";
quit;
data &libname_out..&memname_out(%if %superq(dataset_options_out) = %bquote() %then %do;
Expand Down
3 changes: 2 additions & 1 deletion utf8/qualify.sas
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ Version Date: 2023-03-08 1.0.1
2024-06-13 1.0.20
2024-06-14 1.0.21
2024-07-10 1.0.22
2024-07-19 1.0.23
===================================
*/

Expand Down Expand Up @@ -731,7 +732,7 @@ Version Date: 2023-03-08 1.0.1
/*3. 输出数据集*/
proc sql noprint;
select max(length) into : column_item_len_max from DICTIONARY.COLUMNS where libname = "WORK" and
memname in (%do i = 1 %to &var_level_n; "TMP_QUALIFY_OUTDATA_LEVEL_&i" %end;) and
memname in ("TMP_QUALIFY_OUTDATA_LABEL" %do i = 1 %to &var_level_n; "TMP_QUALIFY_OUTDATA_LEVEL_&i" %end;) and
name = "ITEM";
quit;
data &libname_out..&memname_out(%if %superq(dataset_options_out) = %bquote() %then %do;
Expand Down