mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-12-14 17:17:15 +00:00
Fix #24 - Change old name StreamlineData to OpenMetadata
This commit is contained in:
parent
e46e88f301
commit
d8d6dce33c
@ -17,10 +17,10 @@
|
|||||||
package org.openmetadata.catalog.jdbi3;
|
package org.openmetadata.catalog.jdbi3;
|
||||||
|
|
||||||
import com.fasterxml.jackson.core.JsonProcessingException;
|
import com.fasterxml.jackson.core.JsonProcessingException;
|
||||||
import com.streamlinedata.catalog.type.ColumnJoin;
|
import org.openmetadata.catalog.type.ColumnJoin;
|
||||||
import com.streamlinedata.catalog.type.JoinedWith;
|
import org.openmetadata.catalog.type.JoinedWith;
|
||||||
import com.streamlinedata.catalog.type.TableData;
|
import org.openmetadata.catalog.type.TableData;
|
||||||
import com.streamlinedata.catalog.type.TableJoins;
|
import org.openmetadata.catalog.type.TableJoins;
|
||||||
import org.openmetadata.catalog.Entity;
|
import org.openmetadata.catalog.Entity;
|
||||||
import org.openmetadata.catalog.entity.data.Database;
|
import org.openmetadata.catalog.entity.data.Database;
|
||||||
import org.openmetadata.catalog.entity.data.Table;
|
import org.openmetadata.catalog.entity.data.Table;
|
||||||
@ -35,6 +35,7 @@ import org.openmetadata.catalog.resources.databases.TableResource;
|
|||||||
import org.openmetadata.catalog.type.Column;
|
import org.openmetadata.catalog.type.Column;
|
||||||
import org.openmetadata.catalog.type.DailyCount;
|
import org.openmetadata.catalog.type.DailyCount;
|
||||||
import org.openmetadata.catalog.type.EntityReference;
|
import org.openmetadata.catalog.type.EntityReference;
|
||||||
|
import org.openmetadata.catalog.type.TableJoins;
|
||||||
import org.openmetadata.catalog.type.TagLabel;
|
import org.openmetadata.catalog.type.TagLabel;
|
||||||
import org.openmetadata.catalog.util.EntityUtil;
|
import org.openmetadata.catalog.util.EntityUtil;
|
||||||
import org.openmetadata.catalog.util.EntityUtil.Fields;
|
import org.openmetadata.catalog.util.EntityUtil.Fields;
|
||||||
|
|||||||
@ -17,8 +17,8 @@
|
|||||||
package org.openmetadata.catalog.resources.databases;
|
package org.openmetadata.catalog.resources.databases;
|
||||||
|
|
||||||
import com.google.inject.Inject;
|
import com.google.inject.Inject;
|
||||||
import com.streamlinedata.catalog.type.TableData;
|
import org.openmetadata.catalog.type.TableData;
|
||||||
import com.streamlinedata.catalog.type.TableJoins;
|
import org.openmetadata.catalog.type.TableJoins;
|
||||||
import io.swagger.annotations.Api;
|
import io.swagger.annotations.Api;
|
||||||
import io.swagger.v3.oas.annotations.ExternalDocumentation;
|
import io.swagger.v3.oas.annotations.ExternalDocumentation;
|
||||||
import io.swagger.v3.oas.annotations.Operation;
|
import io.swagger.v3.oas.annotations.Operation;
|
||||||
|
|||||||
@ -172,7 +172,7 @@
|
|||||||
},
|
},
|
||||||
"columnJoins": {
|
"columnJoins": {
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"javaType": "com.streamlinedata.catalog.type.ColumnJoin",
|
"javaType": "org.openmetadata.catalog.type.ColumnJoin",
|
||||||
"description": "Information on other tables that this table column is frequently joined with",
|
"description": "Information on other tables that this table column is frequently joined with",
|
||||||
"properties": {
|
"properties": {
|
||||||
"columnName": {
|
"columnName": {
|
||||||
@ -198,7 +198,7 @@
|
|||||||
},
|
},
|
||||||
"tableJoins": {
|
"tableJoins": {
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"javaType": "com.streamlinedata.catalog.type.TableJoins",
|
"javaType": "org.openmetadata.catalog.type.TableJoins",
|
||||||
"properties": {
|
"properties": {
|
||||||
"startDate": {
|
"startDate": {
|
||||||
"description": "Date can be only from today going back to last 29 days",
|
"description": "Date can be only from today going back to last 29 days",
|
||||||
@ -219,7 +219,7 @@
|
|||||||
},
|
},
|
||||||
"tableData": {
|
"tableData": {
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"javaType": "com.streamlinedata.catalog.type.TableData",
|
"javaType": "org.openmetadata.catalog.type.TableData",
|
||||||
"description": "Information on other tables that this table column is frequently joined with",
|
"description": "Information on other tables that this table column is frequently joined with",
|
||||||
"properties": {
|
"properties": {
|
||||||
"columns": {
|
"columns": {
|
||||||
|
|||||||
@ -1,9 +1,6 @@
|
|||||||
package org.openmetadata.catalog.resources.databases;
|
package org.openmetadata.catalog.resources.databases;
|
||||||
|
|
||||||
import com.fasterxml.jackson.core.JsonProcessingException;
|
import com.fasterxml.jackson.core.JsonProcessingException;
|
||||||
import com.streamlinedata.catalog.type.ColumnJoin;
|
|
||||||
import com.streamlinedata.catalog.type.JoinedWith;
|
|
||||||
import com.streamlinedata.catalog.type.TableData;
|
|
||||||
import org.apache.http.client.HttpResponseException;
|
import org.apache.http.client.HttpResponseException;
|
||||||
import org.junit.jupiter.api.Assertions;
|
import org.junit.jupiter.api.Assertions;
|
||||||
import org.junit.jupiter.api.BeforeAll;
|
import org.junit.jupiter.api.BeforeAll;
|
||||||
@ -33,7 +30,10 @@ import org.openmetadata.catalog.resources.teams.TeamResourceTest;
|
|||||||
import org.openmetadata.catalog.resources.teams.UserResourceTest;
|
import org.openmetadata.catalog.resources.teams.UserResourceTest;
|
||||||
import org.openmetadata.catalog.type.Column;
|
import org.openmetadata.catalog.type.Column;
|
||||||
import org.openmetadata.catalog.type.ColumnDataType;
|
import org.openmetadata.catalog.type.ColumnDataType;
|
||||||
|
import org.openmetadata.catalog.type.ColumnJoin;
|
||||||
import org.openmetadata.catalog.type.EntityReference;
|
import org.openmetadata.catalog.type.EntityReference;
|
||||||
|
import org.openmetadata.catalog.type.JoinedWith;
|
||||||
|
import org.openmetadata.catalog.type.TableData;
|
||||||
import org.openmetadata.catalog.type.TableType;
|
import org.openmetadata.catalog.type.TableType;
|
||||||
import org.openmetadata.catalog.type.TagLabel;
|
import org.openmetadata.catalog.type.TagLabel;
|
||||||
import org.openmetadata.catalog.util.JsonUtils;
|
import org.openmetadata.catalog.util.JsonUtils;
|
||||||
|
|||||||
@ -1,10 +1,10 @@
|
|||||||
package org.openmetadata.catalog.resources.databases;
|
package org.openmetadata.catalog.resources.databases;
|
||||||
|
|
||||||
import com.fasterxml.jackson.core.JsonProcessingException;
|
import com.fasterxml.jackson.core.JsonProcessingException;
|
||||||
import com.streamlinedata.catalog.type.ColumnJoin;
|
import org.openmetadata.catalog.type.ColumnJoin;
|
||||||
import com.streamlinedata.catalog.type.JoinedWith;
|
import org.openmetadata.catalog.type.JoinedWith;
|
||||||
import com.streamlinedata.catalog.type.TableData;
|
import org.openmetadata.catalog.type.TableData;
|
||||||
import com.streamlinedata.catalog.type.TableJoins;
|
import org.openmetadata.catalog.type.TableJoins;
|
||||||
import org.apache.http.client.HttpResponseException;
|
import org.apache.http.client.HttpResponseException;
|
||||||
import org.junit.jupiter.api.BeforeAll;
|
import org.junit.jupiter.api.BeforeAll;
|
||||||
import org.junit.jupiter.api.MethodOrderer;
|
import org.junit.jupiter.api.MethodOrderer;
|
||||||
|
|||||||
6
pom.xml
6
pom.xml
@ -31,9 +31,9 @@
|
|||||||
</modules>
|
</modules>
|
||||||
<packaging>pom</packaging>
|
<packaging>pom</packaging>
|
||||||
<scm>
|
<scm>
|
||||||
<connection>scm:git:git@github.com:StreamlineData/catalog</connection>
|
<connection>scm:git:git@github.com:Open-Metadata/OpenMetadata</connection>
|
||||||
<developerConnection>scm:git:git@github.com:StreamlineData/catalog</developerConnection>
|
<developerConnection>scm:git:git@github.com:Open-Metadata/OpenMetadata</developerConnection>
|
||||||
<url>scm:git:git@github.com:StreamlineData/catalog</url>
|
<url>scm:git:git@github.com:Open-Metadata/OpenMetadata</url>
|
||||||
</scm>
|
</scm>
|
||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user