-
Notifications
You must be signed in to change notification settings - Fork 55
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Need SO for x64 mysql #2
Comments
Having the same issue |
just compile it yourself gcc $(/your/mysql/bin/path/mysql_config --cflags) -shared -fPIC -o lib_mysqludf_json.so lib_mysqludf_json.c |
compilation works for me, but function result was different than I expected [
["1","2","3"],
["1","2","3"]
] got: ["1","2","3"]
["1","2","3"] But it is probably possible to make it like I want to. Also used sql for same purposes(~same performance) SELECT * INTO OUTFILE 'pathToFile'
FIELDS TERMINATED BY ',' OPTIONALLY ENCLOSED BY '\"'
LINES
STARTING BY '['
TERMINATED BY '],\n'
FROM Table result: ["1","2","3"],
["1","2","3"], Maybe someone have good idea how to get json format I want? |
Compile worked but when trying to create udf
Getting error
Does anybody have any ideas? |
I need a SO file for 64-bit mysql. The SO file provided is 32-bit. I would build it myself, but the repository is missing required files.
The text was updated successfully, but these errors were encountered: