Skip to content

Commit 088c2df

Browse files
committed
Update troubleshooting and remove repo files
1 parent 905953b commit 088c2df

2 files changed

Lines changed: 18 additions & 19 deletions

File tree

docs/remove-repo-ver.md

Lines changed: 13 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,28 @@
1-
# Removed repository versions
1+
# Repository 404 errors and removed versions
22

3-
## Overview
3+
Some Percona Distribution for PostgreSQL repository versions are no longer available and may return a `404 Not Found` error when accessed. This happens because these versions have been removed from the repository.
44

5-
Some Percona Distribution for PostgreSQL repository versions are no longer available and may return a `404 Not Found` error when accessed. The affected versions are:
5+
The affected versions are:
66

7-
- ppg-14.19
8-
- ppg-15.14
9-
- ppg-16.10
10-
- ppg-17.6
7+
- `ppg-14.19`
8+
- `ppg-15.14`
9+
- `ppg-16.10`
10+
- `ppg-17.6`
1111

1212
## Reason for removal
1313

14-
These versions were part of a release that included known issues affecting stability and reliability (also referred to internally as the "assertion release").
14+
These versions were part of a release that included known issues affecting stability and reliability.
1515

1616
To prevent unintended usage, these repositories were removed from distribution.
1717

18+
These versions are not recommended for production use.
19+
1820
## What should you do instead?
1921

2022
Use the latest available minor version for your PostgreSQL major version.
2123

22-
Example:
23-
24-
- Instead of `ppg-16.10`, use the latest `ppg-16.x`
25-
26-
See [installation guide]
24+
Examples:
2725

28-
## Additional context
26+
- Instead of `ppg-17.6`, use the latest `ppg-17.x`
2927

30-
For more details, see the relevant release notes:
31-
- [link to release notes]
28+
For installation and upgrade instructions, see the [minor upgrade guide](minor-upgrade.md).

docs/troubleshooting.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,18 @@
1-
# Troubleshooting guide
1+
# Troubleshooting guide overview
22

33
This guide helps you identify and resolve common issues when installing, configuring, or running Percona Server for PostgreSQL 17.
44

55
If you're looking for general information or usage tips, check the [FAQ](faq.md).
66

7-
## Cannot create a table. Permission denied in schema `public`
7+
## Common issues
8+
9+
### Cannot create a table. Permission denied in schema `public`
810

911
Every database in PostgreSQL has a default schema called `public`. A schema stores database objects like tables, views, indexes and allows organizing them into logical groups.
1012

1113
When you create a table without specifying a schema name, it ends up in the `public` schema by default.
1214

13-
Starting with PostgreSQL 15, non-database owners cannot access the `public` schema. Therefore, you can either grant privileges to the database for your user using the [GRANT](https://www.postgresql.org/docs/{{pgvesrion}}/sql-grant.html) command or create your own schema to insert the data.
15+
Starting with PostgreSQL 15, non-database owners cannot access the `public` schema. Therefore, you can either grant privileges to the database for your user using the [GRANT](https://www.postgresql.org/docs/{{pgversion}}/sql-grant.html) command or create your own schema to insert the data.
1416

1517
To create a schema, use the following statement:
1618

0 commit comments

Comments
 (0)