Skip to content

Commit 802e3b6

Browse files
committed
Merge branch '10.8' into 10.9
2 parents b24148b + 12cd3dc commit 802e3b6

File tree

909 files changed

+20193
-6237
lines changed

Some content is hidden

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

909 files changed

+20193
-6237
lines changed

.gitattributes

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ pcre/testdata/greppatN4 -text
3030
*.c diff=cpp
3131
*.h diff=cpp
3232
*.cc diff=cpp
33-
*.ic diff=cpp
33+
*.inl diff=cpp
3434
*.cpp diff=cpp
3535
*.java diff=cpp
3636

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -254,6 +254,7 @@ support-files/mariadb-extra.socket
254254
support-files/mariadb@.service
255255
support-files/mariadb@.socket
256256
support-files/mariadb-extra@.socket
257+
support-files/mini-benchmark
257258
support-files/my-huge.cnf
258259
support-files/my-innodb-heavy-4G.cnf
259260
support-files/my-large.cnf

CMakeLists.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -419,6 +419,10 @@ IF(WITH_UNIT_TESTS)
419419
ENDIF()
420420
ENDIF()
421421

422+
INCLUDE(cpack_tgz)
423+
INCLUDE(cpack_rpm)
424+
INCLUDE(cpack_deb)
425+
422426
UNSET (MYSQLD_STATIC_PLUGIN_LIBS CACHE)
423427

424428
INCLUDE(mariadb_connector_c) # this does ADD_SUBDIRECTORY(libmariadb)

appveyor.yml

Lines changed: 3 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,5 @@
1-
init:
2-
# Install bison
3-
- choco feature disable --name showDownloadProgress
4-
- choco install -y winflexbison
5-
- C:\ProgramData\chocolatey\lib\winflexbison\tools\win_bison.exe --version
6-
71
version: build-{build}~branch-{branch}
82

9-
cache:
10-
- C:\ProgramData\chocolatey\bin -> appveyor.yml
11-
- C:\ProgramData\chocolatey\lib -> appveyor.yml
12-
133
clone_depth: 1
144

155
build_script:
@@ -26,8 +16,8 @@ build_script:
2616
- cd _build
2717
- set BUILD_TYPE=MinSizeRel
2818
- set GENERATOR=-GNinja
29-
- call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Auxiliary\Build\vcvars64.bat"
30-
- cmake -E time cmake %GENERATOR% .. -DCMAKE_BUILD_TYPE=%BUILD_TYPE% -DMYSQL_MAINTAINER_MODE=ERR -DFAST_BUILD=1 -DBISON_EXECUTABLE=C:\ProgramData\chocolatey\lib\winflexbison\tools\win_bison.exe -DPLUGIN_PERFSCHEMA=NO -DPLUGIN_FEEDBACK=NO
19+
- call "C:\Program Files\Microsoft Visual Studio\2022\Community\VC\Auxiliary\Build\vcvars64.bat"
20+
- cmake -E time cmake %GENERATOR% .. -DCMAKE_BUILD_TYPE=%BUILD_TYPE% -DMYSQL_MAINTAINER_MODE=ERR -DFAST_BUILD=1 -DBISON_EXECUTABLE=C:\cygwin64\bin\bison.exe -DPLUGIN_PERFSCHEMA=NO -DPLUGIN_FEEDBACK=NO
3121
- set /A jobs=2*%NUMBER_OF_PROCESSORS%
3222
- cmake -E time cmake --build . -j %jobs% --config %BUILD_TYPE% --target minbuild
3323

@@ -37,4 +27,4 @@ test_script:
3727
- set /A parallel=4*%NUMBER_OF_PROCESSORS%
3828
- perl mysql-test-run.pl --force --max-test-fail=10 --retry=2 -parallel=%parallel% --testcase-timeout=4 --suite=main --skip-test-list=%APPVEYOR_BUILD_FOLDER%\win\appveyor_skip_tests.txt --mysqld=--loose-innodb-flush-log-at-trx-commit=2
3929

40-
image: Visual Studio 2019
30+
image: Visual Studio 2022

client/client_priv.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,7 @@ enum options_client
101101
OPT_SSL_CRL, OPT_SSL_CRLPATH,
102102
OPT_IGNORE_DATA,
103103
OPT_PRINT_ROW_COUNT, OPT_PRINT_ROW_EVENT_POSITIONS,
104+
OPT_CHECK_IF_UPGRADE_NEEDED,
104105
OPT_SHUTDOWN_WAIT_FOR_SLAVES,
105106
OPT_COPY_S3_TABLES,
106107
OPT_PRINT_TABLE_METADATA,

0 commit comments

Comments
 (0)