Skip to content

Commit dc20baf

Browse files
authored
Remove redundant github issue links in postgres doc (#10027)
* Remove redundant github issue links * Remove redundant word * Update wording * Update wording
1 parent fa6ebdf commit dc20baf

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/integrations/sources/postgres.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -63,17 +63,17 @@ ALTER DEFAULT PRIVILEGES IN SCHEMA <schema_name> GRANT SELECT ON TABLES TO <user
6363
```
6464

6565
Currently, there is no way to sync a subset of columns using the Postgres source connector.
66-
- When setting up a connection, you can only choose which tables to sync, but not columns (issue [#2227](https://github.com/airbytehq/airbyte/issues/2227)).
67-
- If the user account can only access a subset of columns (i.e. has no `SELECT` permission for the full table), the connection check will pass. However, the data sync will fail with permission denied exception (issue [#9771](https://github.com/airbytehq/airbyte/issues/9771)).
66+
- When setting up a connection, you can only choose which tables to sync, but not columns.
67+
- If the user can only access a subset of columns, the connection check will pass. However, the data sync will fail with a `permission denied` exception.
6868

69-
The short-term workaround for both issues is to create a view on the specific columns, and grant the user read permission of that view:
69+
The short-term workaround for partial table syncing is to create a view on the specific columns, and grant the user read access to that view:
7070

7171
```sql
7272
CREATE VIEW <view_name> as SELECT <columns> FROM <table>;
7373
GRANT SELECT ON TABLE <view_name> IN SCHEMA <schema_name> to <user_name>;
7474
```
7575

76-
A bug related to partial table permission is track in [issue #9771](https://github.com/airbytehq/airbyte/issues/9771).
76+
This issue is tracked in [\#9771](https://github.com/airbytehq/airbyte/issues/9771).
7777

7878
#### 3. Optionally, set up CDC. Follow the guide [below](postgres.md#setting-up-cdc-for-postgres) to do so.
7979

0 commit comments

Comments
 (0)