Skip to content

Commit 6febb53

Browse files
authored
Merge branch 'master' into catalog-fix
2 parents b5927f8 + e57d118 commit 6febb53

File tree

4 files changed

+19
-6
lines changed

4 files changed

+19
-6
lines changed

CONTRIBUTING.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,16 @@ Sources pages check if the source is a cloud-app, then include information about
7777

7878
Content with in each `.md` file is markdown. For information about styling, and available extensions, see `_src/utils/formatguide.md` or the live version [here](https://segment.com/docs/utils/formatguide).
7979

80+
## Building a preview
81+
82+
Netlify allows you to build a preview environment on any PR you create in GitHub. This is helpful when you want to send out a review, and the formatting and design are important to those reviewers.
83+
84+
To build a preview site, add `[netlify-build]` to a commit message on your PR. Here's an example of what the preview build will look like:
85+
86+
https://github.com/segmentio/segment-docs/pull/6051#issuecomment-1942723573
87+
88+
You can rebuild the preview by adding a new commit with `[netlify-build]` in the commit message.
89+
8090
### Front matter
8191

8292
Repository Markdown files often contain front matter metadata, which you'll find at the top of the file. These front matter variables instruct Jekyll how to build and render the page as HTML.

src/_data/catalog/destinations.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92111,7 +92111,7 @@ items:
9211192111
label: Zopim ID
9211292112
actions: []
9211392113
presets: []
92114-
- id: 5d4dd5b989eda01a09b5cdb1
92114+
- id: 5d4dd5b989eda01a09b5cdb1
9211592115
display_name: Personas Display & Video 360
9211692116
name: Personas Display & Video 360
9211792117
slug: personas-display-video-360

src/connections/destinations/catalog/boomtrain/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
tile: Boomtrain Destination
2+
title: Boomtrain Destination
33
beta: true
44
---
55

src/unify/linked-profiles/setup-guides/snowflake-setup.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ GRANT CREATE SCHEMA ON DATABASE identifier($segment_connection_db) TO ROLE iden
9191

9292
### Grant access to other databases
9393

94-
Next, give the Segment user **read-only** access to all the other databases you want to use for Linked Profiles.
94+
Next, give the Segment user **read-only** access to all the other databases you want to use for Linked Profiles. You must grant access to the Profiles Sync database.
9595

9696
Run the SQL query below for **each** database you want to use for Linked Profiles:
9797

@@ -128,12 +128,15 @@ SET segment_connection_role='SEGMENT_LINKED_ROLE';
128128
129129
-- View specific schemas in database
130130
GRANT USAGE ON DATABASE identifier($db) TO ROLE identifier($segment_connection_role);
131-
132131
GRANT USAGE ON SCHEMA identifier($schema) TO ROLE identifier($segment_connection_role);
133-
134132
GRANT SELECT ON ALL TABLES IN SCHEMA identifier($schema) TO ROLE identifier($segment_connection_role);
135-
136133
GRANT SELECT ON FUTURE TABLES IN SCHEMA identifier($schema) TO ROLE identifier($segment_connection_role);
134+
GRANT SELECT ON ALL VIEWS IN SCHEMA identifier($linked_read_only_database) TO ROLE identifier($segment_connection_role);
135+
GRANT SELECT ON FUTURE VIEWS IN SCHEMA identifier($linked_read_only_database) TO ROLE identifier($segment_connection_role);
136+
GRANT SELECT ON ALL EXTERNAL TABLES IN SCHEMA identifier($linked_read_only_database) TO ROLE identifier($segment_connection_role);
137+
GRANT SELECT ON FUTURE EXTERNAL TABLES IN SCHEMA identifier($linked_read_only_database) TO ROLE identifier($segment_connection_role);
138+
GRANT SELECT ON ALL MATERIALIZED VIEWS IN SCHEMA identifier($linked_read_only_database) TO ROLE identifier($segment_connection_role);
139+
GRANT SELECT ON FUTURE MATERIALIZED VIEWS IN SCHEMA identifier($linked_read_only_database) TO ROLE identifier($segment_connection_role);
137140
138141
139142
```

0 commit comments

Comments
 (0)