mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-12-10 23:05:55 +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;
|
||||
|
||||
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 com.streamlinedata.catalog.type.TableJoins;
|
||||
import org.openmetadata.catalog.type.ColumnJoin;
|
||||
import org.openmetadata.catalog.type.JoinedWith;
|
||||
import org.openmetadata.catalog.type.TableData;
|
||||
import org.openmetadata.catalog.type.TableJoins;
|
||||
import org.openmetadata.catalog.Entity;
|
||||
import org.openmetadata.catalog.entity.data.Database;
|
||||
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.DailyCount;
|
||||
import org.openmetadata.catalog.type.EntityReference;
|
||||
import org.openmetadata.catalog.type.TableJoins;
|
||||
import org.openmetadata.catalog.type.TagLabel;
|
||||
import org.openmetadata.catalog.util.EntityUtil;
|
||||
import org.openmetadata.catalog.util.EntityUtil.Fields;
|
||||
|
||||
@ -17,8 +17,8 @@
|
||||
package org.openmetadata.catalog.resources.databases;
|
||||
|
||||
import com.google.inject.Inject;
|
||||
import com.streamlinedata.catalog.type.TableData;
|
||||
import com.streamlinedata.catalog.type.TableJoins;
|
||||
import org.openmetadata.catalog.type.TableData;
|
||||
import org.openmetadata.catalog.type.TableJoins;
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.v3.oas.annotations.ExternalDocumentation;
|
||||
import io.swagger.v3.oas.annotations.Operation;
|
||||
|
||||
@ -172,7 +172,7 @@
|
||||
},
|
||||
"columnJoins": {
|
||||
"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",
|
||||
"properties": {
|
||||
"columnName": {
|
||||
@ -198,7 +198,7 @@
|
||||
},
|
||||
"tableJoins": {
|
||||
"type": "object",
|
||||
"javaType": "com.streamlinedata.catalog.type.TableJoins",
|
||||
"javaType": "org.openmetadata.catalog.type.TableJoins",
|
||||
"properties": {
|
||||
"startDate": {
|
||||
"description": "Date can be only from today going back to last 29 days",
|
||||
@ -219,7 +219,7 @@
|
||||
},
|
||||
"tableData": {
|
||||
"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",
|
||||
"properties": {
|
||||
"columns": {
|
||||
|
||||
@ -1,9 +1,6 @@
|
||||
package org.openmetadata.catalog.resources.databases;
|
||||
|
||||
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.junit.jupiter.api.Assertions;
|
||||
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.type.Column;
|
||||
import org.openmetadata.catalog.type.ColumnDataType;
|
||||
import org.openmetadata.catalog.type.ColumnJoin;
|
||||
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.TagLabel;
|
||||
import org.openmetadata.catalog.util.JsonUtils;
|
||||
|
||||
@ -1,10 +1,10 @@
|
||||
package org.openmetadata.catalog.resources.databases;
|
||||
|
||||
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 com.streamlinedata.catalog.type.TableJoins;
|
||||
import org.openmetadata.catalog.type.ColumnJoin;
|
||||
import org.openmetadata.catalog.type.JoinedWith;
|
||||
import org.openmetadata.catalog.type.TableData;
|
||||
import org.openmetadata.catalog.type.TableJoins;
|
||||
import org.apache.http.client.HttpResponseException;
|
||||
import org.junit.jupiter.api.BeforeAll;
|
||||
import org.junit.jupiter.api.MethodOrderer;
|
||||
|
||||
6
pom.xml
6
pom.xml
@ -31,9 +31,9 @@
|
||||
</modules>
|
||||
<packaging>pom</packaging>
|
||||
<scm>
|
||||
<connection>scm:git:git@github.com:StreamlineData/catalog</connection>
|
||||
<developerConnection>scm:git:git@github.com:StreamlineData/catalog</developerConnection>
|
||||
<url>scm:git:git@github.com:StreamlineData/catalog</url>
|
||||
<connection>scm:git:git@github.com:Open-Metadata/OpenMetadata</connection>
|
||||
<developerConnection>scm:git:git@github.com:Open-Metadata/OpenMetadata</developerConnection>
|
||||
<url>scm:git:git@github.com:Open-Metadata/OpenMetadata</url>
|
||||
</scm>
|
||||
|
||||
<properties>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user