Skip to content

Commit

Permalink
Update tidb.md (#18210)
Browse files Browse the repository at this point in the history
add CREATE, INSERT, SELECT, DROP to Permissions for TiDB destination
  • Loading branch information
cncc authored Oct 20, 2022
1 parent 762c4bd commit 1e9ad1c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/integrations/destinations/tidb.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ CREATE USER 'airbyte'@'%' IDENTIFIED BY 'your_password_here';
Then give it access to the relevant database:

```sql
GRANT SELECT ON <database name>.* TO 'airbyte'@'%';
GRANT CREATE, INSERT, SELECT, DROP ON <database name>.* TO 'airbyte'@'%';
```

#### Target Database
Expand Down

0 comments on commit 1e9ad1c

Please sign in to comment.