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 ccedadd commit f3e8d6dCopy full SHA for f3e8d6d
2 files changed
extra/mysqludfsys/command_execution/linux.sql
@@ -46,7 +46,8 @@ UPDATE udftest SET data=CONCAT(data,0x000000000000000004000000000000006500000001
46
--
47
-- Note that /TODO/plugin DOES NOT
48
-- exist by default so it is NOT possible to save the SO in the proper
49
--- folder where MySQL server looks for SOs.
+-- folder where MySQL server looks for SOs.
50
+-- SHOW VARIABLES WHERE variable_name='plugin_dir';
51
52
-- References:
53
-- http://dev.mysql.com/doc/refman/5.1/en/create-function-udf.html
plugins/dbms/mysql.py
@@ -146,15 +146,16 @@ def __commentCheck(self):
146
147
return None
148
149
- # MySQL valid versions updated on 02/2009
+ # MySQL valid versions updated on 05/2009
150
versions = (
151
(32200, 32233), # MySQL 3.22
152
(32300, 32359), # MySQL 3.23
153
(40000, 40031), # MySQL 4.0
154
(40100, 40122), # MySQL 4.1
155
(50000, 50077), # MySQL 5.0
156
- (50100, 50132), # MySQL 5.1
157
- (60000, 60009), # MySQL 6.0
+ (50100, 50134), # MySQL 5.1
+ (50400, 50401), # MySQL 5.4
158
+ (60000, 60010), # MySQL 6.0
159
)
160
161
for element in versions:
@@ -206,7 +207,6 @@ def getFingerprint(self):
206
207
value += actVer
208
return value
209
- # TODO: comment injection fingerprint is broken, fix
210
comVer = self.__commentCheck()
211
blank = " " * 15
212
value += "active fingerprint: %s" % actVer
0 commit comments