Backport for Update Quick Start Guide Postgresql Server (17)#947
Open
Backport for Update Quick Start Guide Postgresql Server (17)#947
Conversation
Replaced hardcode version with variable and made TOC work
ImTheKai
reviewed
May 8, 2026
| 3. Switch to the `postgres` user and open the psql interactive terminal: | ||
|
|
||
| ```{.bash data-prompt="$"} | ||
| sudo -i -u postgres |
Contributor
There was a problem hiding this comment.
That won't work by copy/paste and should be sudo -i -u postgres psql instead.
ImTheKai
reviewed
May 8, 2026
| 5. Insert data in the customers table and query the data insertion: | ||
|
|
||
| ```sql | ||
| INSERT INTO customers (first_name, last_name, email) VALUES ('John', 'Doe', 'john.doe@example.com'); |
Contributor
There was a problem hiding this comment.
That could be smoother like this "INSERT INTO customers VALUES ('John','Doe','john.doe@example.com');"
ImTheKai
approved these changes
May 8, 2026
Contributor
ImTheKai
left a comment
There was a problem hiding this comment.
LGTM and tested on Ubuntu 24.04. Only the two cosmetic issues, and these are the same in all the other backports as well as the original merged one, so I will not mention this in all reviews again
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR is a backport for #925 and #923's postgresql-server.md file.