Skip to content

Commit 238c1ef

Browse files
committed
Remove unnecessary row notes from examples
1 parent 5789860 commit 238c1ef

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

Diff for: README.md

+1-4
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,7 @@ SELECT pgv_get('pack', 'var_text', NULL::text);
304304
before transaction block
305305
```
306306

307-
If you create a transactional variable after `BEGIN` or `SAVEPOINT` statements
307+
If you create a transactional variable after `BEGIN` or `SAVEPOINT` statements
308308
and then rollback to previous state - variable will not be exist:
309309

310310
```sql
@@ -342,15 +342,12 @@ SELECT * FROM pgv_stats();
342342
package | allocated_memory
343343
---------+------------------
344344
pack | 24576
345-
(1 row)
346345

347346
ROLLBACK;
348347
SELECT * FROM pgv_list();
349348
package | name | is_transactional
350349
---------+-----------+------------------
351350
pack | var_trans | t
352-
(1 row)
353-
354351
```
355352

356353
If you created transactional variable once, you should use flag `is_transactional`

0 commit comments

Comments
 (0)