fix: increasing length of mpe_excel_map cols to
Some checks failed
Build / Build-and-ng-test (pull_request) Failing after 14s
Some checks failed
Build / Build-and-ng-test (pull_request) Failing after 14s
This commit is contained in:
parent
271543a446
commit
2d4d068413
4
package-lock.json
generated
4
package-lock.json
generated
@ -1,12 +1,12 @@
|
|||||||
{
|
{
|
||||||
"name": "dcfrontend",
|
"name": "dcfrontend",
|
||||||
"version": "6.2.7",
|
"version": "6.3.0",
|
||||||
"lockfileVersion": 2,
|
"lockfileVersion": 2,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "dcfrontend",
|
"name": "dcfrontend",
|
||||||
"version": "6.2.7",
|
"version": "6.3.0",
|
||||||
"hasInstallScript": true,
|
"hasInstallScript": true,
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@saithodev/semantic-release-gitea": "^2.1.0",
|
"@saithodev/semantic-release-gitea": "^2.1.0",
|
||||||
|
@ -12,8 +12,8 @@ create table &curlib..mpe_excel_map(
|
|||||||
XLMAP_ID char(32) not null,
|
XLMAP_ID char(32) not null,
|
||||||
XLMAP_RANGE_ID char(32) not null,
|
XLMAP_RANGE_ID char(32) not null,
|
||||||
XLMAP_SHEET char(32) not null,
|
XLMAP_SHEET char(32) not null,
|
||||||
XLMAP_START char(256) not null,
|
XLMAP_START char(1000) not null,
|
||||||
XLMAP_FINISH char(256),
|
XLMAP_FINISH char(1000),
|
||||||
tx_to num not null,
|
tx_to num not null,
|
||||||
constraint pk_mpe_excel_map
|
constraint pk_mpe_excel_map
|
||||||
primary key(tx_from,XLMAP_ID,XLMAP_RANGE_ID));
|
primary key(tx_from,XLMAP_ID,XLMAP_RANGE_ID));
|
||||||
|
@ -276,8 +276,8 @@ create table &lib..mpe_excel_map(
|
|||||||
XLMAP_ID char(32) ¬null,
|
XLMAP_ID char(32) ¬null,
|
||||||
XLMAP_RANGE_ID char(32) ¬null,
|
XLMAP_RANGE_ID char(32) ¬null,
|
||||||
XLMAP_SHEET char(32) ¬null,
|
XLMAP_SHEET char(32) ¬null,
|
||||||
XLMAP_START char(256) ¬null,
|
XLMAP_START char(1000) ¬null,
|
||||||
XLMAP_FINISH char(256)
|
XLMAP_FINISH char(1000)
|
||||||
);quit;
|
);quit;
|
||||||
proc datasets lib=&lib noprint;
|
proc datasets lib=&lib noprint;
|
||||||
modify mpe_excel_map;
|
modify mpe_excel_map;
|
||||||
|
@ -207,7 +207,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "4gl",
|
"name": "4gl",
|
||||||
"serverUrl": "https://sas9.4gl.io",
|
"serverUrl": "https://sas.4gl.io",
|
||||||
"serverType": "SASJS",
|
"serverType": "SASJS",
|
||||||
"httpsAgentOptions": {
|
"httpsAgentOptions": {
|
||||||
"allowInsecureRequests": false
|
"allowInsecureRequests": false
|
||||||
|
@ -16,5 +16,4 @@
|
|||||||
data work.staging_ds;
|
data work.staging_ds;
|
||||||
set work.staging_ds;
|
set work.staging_ds;
|
||||||
XLMAP_ID=upcase(XLMAP_ID);
|
XLMAP_ID=upcase(XLMAP_ID);
|
||||||
XLMAP_RANGE_ID=upcase(XLMAP_RANGE_ID);
|
|
||||||
run;
|
run;
|
||||||
|
Loading…
Reference in New Issue
Block a user