Skip to content

Commit be1d06c

Browse files
author
Galina Shalygina
committed
Merge branch '10.2' into 10.2-mdev9864
1 parent e09b1f2 commit be1d06c

File tree

380 files changed

+21915
-6186
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

380 files changed

+21915
-6186
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ Docs/INFO_SRC
2121
Makefile
2222
TAGS
2323
Testing/
24+
tmp/
2425
VERSION.dep
2526
configure
2627
client/async_example

client/mysqltest.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -703,7 +703,7 @@ class LogFile {
703703
DBUG_ASSERT(ds->str);
704704

705705
#ifdef EXTRA_DEBUG
706-
DBUG_PRINT("QQ", ("str: %*s", (int) ds->length, ds->str));
706+
DBUG_PRINT("extra", ("str: %*s", (int) ds->length, ds->str));
707707
#endif
708708

709709
if (fwrite(ds->str, 1, ds->length, m_file) != ds->length)

config.h.cmake

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -189,6 +189,7 @@
189189
#cmakedefine HAVE_PREAD 1
190190
#cmakedefine HAVE_PAUSE_INSTRUCTION 1
191191
#cmakedefine HAVE_FAKE_PAUSE_INSTRUCTION 1
192+
#cmakedefine HAVE_HMT_PRIORITY_INSTRUCTION 1
192193
#cmakedefine HAVE_RDTSCLL 1
193194
#cmakedefine HAVE_READ_REAL_TIME 1
194195
#cmakedefine HAVE_PTHREAD_ATTR_CREATE 1

configure.cmake

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -784,6 +784,17 @@ IF(NOT CMAKE_CROSSCOMPILING AND NOT MSVC)
784784
}
785785
" HAVE_FAKE_PAUSE_INSTRUCTION)
786786
ENDIF()
787+
IF (NOT HAVE_PAUSE_INSTRUCTION)
788+
CHECK_C_SOURCE_COMPILES("
789+
#include <sys/platform/ppc.h>
790+
int main()
791+
{
792+
__ppc_set_ppr_low();
793+
__ppc_set_ppr_med();
794+
return 0;
795+
}
796+
" HAVE_HMT_PRIORITY_INSTRUCTION)
797+
ENDIF()
787798
ENDIF()
788799

789800
CHECK_SYMBOL_EXISTS(tcgetattr "termios.h" HAVE_TCGETATTR 1)

0 commit comments

Comments
 (0)