File tree Expand file tree Collapse file tree
openmetadata-ui/src/main/resources/ui/playwright/support/entity Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -64,13 +64,11 @@ export class FileClass extends EntityClass {
6464 } ,
6565 } ,
6666 } ;
67- children : FileChildrenDetails [ ] ;
6867 entity : {
6968 name : string ;
7069 displayName : string ;
7170 service : string ;
7271 description : string ;
73- columns ?: FileChildrenDetails [ ] ;
7472 } ;
7573
7674 serviceResponseData : ResponseDataType = { } as ResponseDataType ;
@@ -84,42 +82,11 @@ export class FileClass extends EntityClass {
8482 this . serviceCategory = SERVICE_TYPE . DriveService ;
8583 this . serviceType = ServiceTypes . DRIVE_SERVICES ;
8684 this . childrenSelectorId = `${ this . service . name } .${ this . fileName } ` ;
87- this . children = [
88- {
89- name : 'sample_column_1' ,
90- dataType : 'BITMAP' ,
91- } ,
92- {
93- name : 'sample_column_2' ,
94- dataType : 'BITMAP' ,
95- children : [
96- {
97- name : 'nested_column_1' ,
98- dataType : 'BITMAP' ,
99- children : [
100- {
101- name : 'deeply_nested_column_1' ,
102- dataType : 'BIGINT' ,
103- } ,
104- {
105- name : 'deeply_nested_column_2' ,
106- dataType : 'BIGINT' ,
107- } ,
108- ] ,
109- } ,
110- {
111- name : 'nested_column_2' ,
112- dataType : 'BIGINT' ,
113- } ,
114- ] ,
115- } ,
116- ] ;
11785 this . entity = {
11886 name : this . fileName ,
11987 displayName : this . fileName ,
12088 service : this . service . name ,
12189 description : 'description' ,
122- columns : this . children ,
12390 } ;
12491 }
12592
You can’t perform that action at this time.
0 commit comments