Skip to content

Commit f261ef6

Browse files
pikachuSparkleAndriciuc
authored andcommitted
Update crud.md (#757)
* Update crud.md fix insert sql syntax error * Update tarball.md -- fix shell command tar syntax error fix shell command tar syntax error -f must close to file name
1 parent 01302c3 commit f261ef6

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docs/crud.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Populate the table with the sample data as follows:
3333
INSERT INTO customers (first_name, last_name, email)
3434
VALUES
3535
('John', 'Doe', '[email protected]'), -- Insert a new row
36-
('Jane', 'Doe', '[email protected]');
36+
('Jane', 'Doe', '[email protected]'), -- Insert another new row
3737
('Alice', 'Smith', '[email protected]');
3838
```
3939

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

110110
## Next steps
111111

112-
[What's next?](whats-next.md){.md-button}
112+
[What's next?](whats-next.md){.md-button}

docs/tarball.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ The steps below install the tarballs for OpenSSL 3.x on x86_64 architecture. Use
8383
4. Extract the tarball to the directory for binaries that you created on step 1.
8484

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

8989
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.

0 commit comments

Comments
 (0)