fix: increasing length of mpe_excel_map cols to
Build / Build-and-ng-test (pull_request) Failing after 14s Details

This commit is contained in:
zver 2024-01-01 12:23:07 +00:00
parent 271543a446
commit 2d4d068413
6 changed files with 8 additions and 9 deletions

4
package-lock.json generated
View File

@ -1,12 +1,12 @@
{
"name": "dcfrontend",
"version": "6.2.7",
"version": "6.3.0",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "dcfrontend",
"version": "6.2.7",
"version": "6.3.0",
"hasInstallScript": true,
"devDependencies": {
"@saithodev/semantic-release-gitea": "^2.1.0",

View File

@ -12,8 +12,8 @@ create table &curlib..mpe_excel_map(
XLMAP_ID char(32) not null,
XLMAP_RANGE_ID char(32) not null,
XLMAP_SHEET char(32) not null,
XLMAP_START char(256) not null,
XLMAP_FINISH char(256),
XLMAP_START char(1000) not null,
XLMAP_FINISH char(1000),
tx_to num not null,
constraint pk_mpe_excel_map
primary key(tx_from,XLMAP_ID,XLMAP_RANGE_ID));

View File

@ -276,8 +276,8 @@ create table &lib..mpe_excel_map(
XLMAP_ID char(32) &notnull,
XLMAP_RANGE_ID char(32) &notnull,
XLMAP_SHEET char(32) &notnull,
XLMAP_START char(256) &notnull,
XLMAP_FINISH char(256)
XLMAP_START char(1000) &notnull,
XLMAP_FINISH char(1000)
);quit;
proc datasets lib=&lib noprint;
modify mpe_excel_map;

View File

@ -207,7 +207,7 @@
},
{
"name": "4gl",
"serverUrl": "https://sas9.4gl.io",
"serverUrl": "https://sas.4gl.io",
"serverType": "SASJS",
"httpsAgentOptions": {
"allowInsecureRequests": false

View File

@ -16,5 +16,4 @@
data work.staging_ds;
set work.staging_ds;
XLMAP_ID=upcase(XLMAP_ID);
XLMAP_RANGE_ID=upcase(XLMAP_RANGE_ID);
run;