Skip to content

Commit

Permalink
dataset: move fraud_detection to solution & remove atomic_edge field (#…
Browse files Browse the repository at this point in the history
…480) (#482)

* dataset: move fraud_detection to solution

* remove incompatibility field atomic_edge

fix: #479

Co-authored-by: Wey Gu <weyl.gu@gmail.com>
  • Loading branch information
github-actions[bot] and wey-gu authored Feb 22, 2023
1 parent b6a7f59 commit debdd87
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions app/pages/Welcome/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ const getDatasetList = (): DatasetItem[] => {
{
type: 'starter',
tags: ['starter'],
spaceName: 'demo_datalineage',
spaceName: 'demo_data_lineage',
fileName: 'datalineage',
rename: undefined as unknown as string,
detail: {
Expand Down Expand Up @@ -199,8 +199,8 @@ const getDatasetList = (): DatasetItem[] => {
docLink: intl.get('welcome.idMappingDocLink'),
},
{
type: 'starter',
tags: ['starter'],
type: 'solution',
tags: ['solution'],
spaceName: 'demo_fraud_detection',
fileName: 'fraud_detection',
rename: undefined as unknown as string,
Expand Down
2 changes: 1 addition & 1 deletion public/datasets/datalineage.ngql
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
CREATE SPACE IF NOT EXISTS `demo_data_lineage` (partition_num = 3, replica_factor = 1, charset = utf8, collate = utf8_bin, vid_type = FIXED_STRING(256), atomic_edge = false) comment="https://www.siwei.io/data-lineage-oss-ref-solution/";
CREATE SPACE IF NOT EXISTS `demo_data_lineage` (partition_num = 3, replica_factor = 1, charset = utf8, collate = utf8_bin, vid_type = FIXED_STRING(256)) comment="https://www.siwei.io/data-lineage-oss-ref-solution/";
:sleep 10;
USE `demo_data_lineage`;
CREATE TAG IF NOT EXISTS `Application` ( `name` string NULL, `id` string NULL, `application_url` string NULL, `description` string NULL, `published_tag` string NULL, `publisher_last_updated_epoch_ms` timestamp NULL) ttl_duration = 0, ttl_col = "";
Expand Down
2 changes: 1 addition & 1 deletion public/datasets/id_mapping.ngql
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
CREATE SPACE IF NOT EXISTS `demo_identity_resolution` (partition_num = 3, replica_factor = 1, charset = utf8, collate = utf8_bin, vid_type = FIXED_STRING(256), atomic_edge = false) comment="https://www.siwei.io/identity-resolution/";
CREATE SPACE IF NOT EXISTS `demo_identity_resolution` (partition_num = 3, replica_factor = 1, charset = utf8, collate = utf8_bin, vid_type = FIXED_STRING(256)) comment="https://www.siwei.io/identity-resolution/";
:sleep 10;
USE `demo_identity_resolution`;
CREATE TAG IF NOT EXISTS `user` (`name` string NOT NULL, `email` string NOT NULL, `phone_num` string NOT NULL, `birthday` date NOT NULL, `address` string NOT NULL);
Expand Down

0 comments on commit debdd87

Please sign in to comment.