Hi Everyone, I want to use java to add a new dataset (mysql table), I found the following code but can't find how to add a table field,does anyone know how to add a table field?
MetadataChangeProposalWrapper mcpw = MetadataChangeProposalWrapper.builder()
.entityType("dataset")
.entityUrn("urnlidataset:(urnlidataPlatform:mysql,test.test5,PROD)")
.upsert()
.aspect(new DatasetProperties().setDescription("test").setName("test5"))
.build();