Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d697155 commit e616f4bCopy full SHA for e616f4b
README.md
@@ -5,6 +5,26 @@
5
The **pg_variables** module provides functions to work with variables of various
6
types. Created variables live only in the current user session.
7
8
+Note that the module does **not support transactions and savepoints**. For
9
+example:
10
+
11
+```sql
12
+SELECT pgv_set_int('vars', 'int1', 101);
13
14
+BEGIN;
15
16
+SELECT pgv_set_int('vars', 'int2', 102);
17
18
+ROLLBACK;
19
20
+SELECT * FROM pgv_list() order by package, name;
21
+ package | name
22
+---------+------
23
+ vars | int1
24
+ vars | int2
25
+(2 rows)
26
+```
27
28
## License
29
30
This module available under the same license as
0 commit comments