8000 Updated files in how to and index folders based on AA feedback by Andriciuc · Pull Request #444 · percona/postgres · GitHub
[go: up one dir, main page]

Skip to content

Updated files in how to and index folders based on AA feedback #444

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 12 commits into from
Jun 26, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
updated decrypt table command and removed preserve data mention for s…
…tep 1
  • Loading branch information
Andriciuc committed Jun 26, 2025
commit 49abe96361218c37cfbdd3bd7fc4e1ab084e9e8a
9 changes: 7 additions & 2 deletions contrib/pg_tde/documentation/docs/how-to/uninstall.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,14 @@ To uninstall `pg_tde`, follow these steps:

1. Decrypt or drop encrypted tables:

Before removing the extension, you must either **decrypt** or **drop** all encrypted tables. `pg_tde` does not support decrypting tables in-place yet. Therefore:
Before removing the extension, you must either **decrypt** or **drop** all encrypted tables:

- To decrypt a table, run:

```sql
alter table <table name> set access method heap;
```

- To preserve the data: manually copy it into unencrypted tables
- To discard data: drop the encrypted tables

2. Drop the extension using the `DROP EXTENSION` command:
Expand Down
0