Skip to content

Commit

Permalink
Update mysql_fdw.c
Browse files Browse the repository at this point in the history
merge pr196 which fixes EnterpriseDB#187 and EnterpriseDB#174
  • Loading branch information
francoisp authored Sep 23, 2020
1 parent b540e3f commit 26fb8e7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mysql_fdw.c
Original file line number Diff line number Diff line change
Expand Up @@ -247,9 +247,9 @@ static void mysql_stmt_error_print(MySQLFdwExecState *festate,
bool
mysql_load_library(void)
{
#if defined(__APPLE__) || defined(__FreeBSD__)
#if !defined(RTLD_DEEPBIND)
/*
* Mac OS/BSD does not support RTLD_DEEPBIND, but it still works without
* Some implementations do not support RTLD_DEEPBIND, but it still
* the RTLD_DEEPBIND
*/
mysql_dll_handle = dlopen(_MYSQL_LIBNAME, RTLD_LAZY);
Expand Down

0 comments on commit 26fb8e7

Please sign in to comment.