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 00f190f commit a7c4400Copy full SHA for a7c4400
1 file changed
lib/core/dicts.py
@@ -105,13 +105,22 @@
105
3: "catupd",
106
}
107
108
+# Reference(s): http://stackoverflow.com/a/17672504
109
+# http://docwiki.embarcadero.com/InterBase/XE7/en/RDB$USER_PRIVILEGES
110
+
111
FIREBIRD_PRIVS = {
112
"S": "SELECT",
113
"I": "INSERT",
114
"U": "UPDATE",
115
"D": "DELETE",
- "R": "REFERENCES",
116
+ "R": "REFERENCE",
117
"E": "EXECUTE",
118
+ "X": "EXECUTE",
119
+ "A": "ALL",
120
+ "M": "MEMBER",
121
+ "T": "DECRYPT",
122
+ "E": "ENCRYPT",
123
+ "B": "SUBSCRIBE",
124
125
126
DB2_PRIVS = {
0 commit comments