Skip to content

Update crud.md #757

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 4 commits into from
Apr 24, 2025
Merged
Show file tree
Hide file tree
Changes from 3 commits
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
4 changes: 2 additions & 2 deletions docs/crud.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Populate the table with the sample data as follows:
INSERT INTO customers (first_name, last_name, email)
VALUES
('John', 'Doe', '[email protected]'), -- Insert a new row
('Jane', 'Doe', '[email protected]');
('Jane', 'Doe', '[email protected]'), -- Insert another new row
('Alice', 'Smith', '[email protected]');
```

Expand Down Expand Up @@ -109,4 +109,4 @@ Congratulations! You have used basic create, read, update and delete (CRUD) oper

## Next steps

[What's next?](whats-next.md){.md-button}
[What's next?](whats-next.md){.md-button}
2 changes: 1 addition & 1 deletion docs/tarball.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ The steps below install the tarballs for OpenSSL 3.x on x86_64 architecture. Use
4. Extract the tarball to the directory for binaries that you created on step 1.

```{.bash data-prompt="$"}
$ sudo tar -xfv percona-postgresql-{{dockertag}}-ssl3-linux-x86_64.tar.gz -C /opt/pgdistro/
$ sudo tar -xvf percona-postgresql-{{dockertag}}-ssl3-linux-x86_64.tar.gz -C /opt/pgdistro/
```

5. If you extracted the tarball in a directory other than `/opt`, copy `percona-python3`, `percona-tcl` and `percona-perl` to the `/opt` directory. This is required for the correct run of libraries that require those modules.
Expand Down