Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit a7c4400

Browse files
committed
Fixes #1304
1 parent 00f190f commit a7c4400

1 file changed

Lines changed: 10 additions & 1 deletion

File tree

lib/core/dicts.py

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,13 +105,22 @@
105105
3: "catupd",
106106
}
107107

108+
# Reference(s): http://stackoverflow.com/a/17672504
109+
# http://docwiki.embarcadero.com/InterBase/XE7/en/RDB$USER_PRIVILEGES
110+
108111
FIREBIRD_PRIVS = {
109112
"S": "SELECT",
110113
"I": "INSERT",
111114
"U": "UPDATE",
112115
"D": "DELETE",
113-
"R": "REFERENCES",
116+
"R": "REFERENCE",
114117
"E": "EXECUTE",
118+
"X": "EXECUTE",
119+
"A": "ALL",
120+
"M": "MEMBER",
121+
"T": "DECRYPT",
122+
"E": "ENCRYPT",
123+
"B": "SUBSCRIBE",
115124
}
116125

117126
DB2_PRIVS = {

0 commit comments

Comments
 (0)