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

Skip to content

Commit 8f47b1a

Browse files
committed
Added README file
1 parent 2553318 commit 8f47b1a

2 files changed

Lines changed: 23 additions & 1 deletion

File tree

extra/udfhack/linux/README.txt

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
Before compiling, you need to adapt the following to your environment:
2+
3+
Variables in install.sh script:
4+
--------------------------------------------------------------------------
5+
Variable name Variable description
6+
--------------------------------------------------------------------------
7+
USER Database management system administrative username
8+
PORT Database management system port
9+
VERSION Database management system version (PostgreSQL only)
10+
11+
Variable in Makefile (MySQL only):
12+
--------------------------------------------------------------------------
13+
Variable name Variable description
14+
--------------------------------------------------------------------------
15+
LIBDIR Database management system absolute file system
16+
path for third party libraries
17+
18+
Then you can launch './install.sh' if you want to compile the shared
19+
object from the source code and create the user-defined functions on the
20+
database management system.
21+
If you only want to compile the shared object, you need to call only the
22+
'make' command.

extra/udfhack/linux/lib_mysqludf_sys/install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
2121

2222
# Adapt the following settings to your environment
23-
PORT="3306"
2423
USER="root"
24+
PORT="3306"
2525

2626
echo "Compiling the MySQL UDF"
2727
make

0 commit comments

Comments
 (0)