Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
MariaDB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
d337700c
Commit
d337700c
authored
Feb 06, 2024
by
Oleksandr Byelkin
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch '10.6' into mariadb-10.6.17
parents
15c75ad0
5c5242a6
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
22 additions
and
2 deletions
+22
-2
VERSION
VERSION
+1
-1
cmake/pcre.cmake
cmake/pcre.cmake
+3
-0
debian/mariadb-server-10.6.mariadb.init
debian/mariadb-server-10.6.mariadb.init
+1
-1
mysql-test/lib/mtr_report.pm
mysql-test/lib/mtr_report.pm
+4
-0
storage/spider/mysql-test/spider/bugfix/r/mdev_33242.result
storage/spider/mysql-test/spider/bugfix/r/mdev_33242.result
+4
-0
storage/spider/mysql-test/spider/bugfix/t/mdev_33242.test
storage/spider/mysql-test/spider/bugfix/t/mdev_33242.test
+6
-0
storage/spider/spd_init_query.h
storage/spider/spd_init_query.h
+3
-0
No files found.
VERSION
View file @
d337700c
MYSQL_VERSION_MAJOR=10
MYSQL_VERSION_MINOR=6
MYSQL_VERSION_PATCH=1
7
MYSQL_VERSION_PATCH=1
8
SERVER_MATURITY=stable
cmake/pcre.cmake
View file @
d337700c
...
...
@@ -4,6 +4,9 @@ SET(WITH_PCRE "auto" CACHE STRING
"Which pcre to use (possible values are 'bundled', 'system', or 'auto')"
)
MACRO
(
BUNDLE_PCRE2
)
SET
(
WITH_PCRE
"bundled"
CACHE STRING
"Which pcre to use (possible values are 'bundled', 'system', or 'auto')"
)
SET
(
dir
"
${
CMAKE_BINARY_DIR
}
/extra/pcre2"
)
SET
(
PCRE_INCLUDE_DIRS
${
dir
}
/src/pcre2-build
${
dir
}
/src/pcre2/src
)
MESSAGE
(
STATUS
"Will download and bundle pcre2"
)
...
...
debian/mariadb-server-10.6.mariadb.init
View file @
d337700c
...
...
@@ -88,7 +88,7 @@ sanity_checks() {
# If datadir location is not changed int configuration
# then it's not printed with /usr/sbin/mariadbd --print-defaults
# then we use 'sane' default.
if
[
-z
"
$datadir
"
]
if
[
-z
"
$datadir
"
]
then
datadir
=
"/var/lib/mysql"
fi
...
...
mysql-test/lib/mtr_report.pm
View file @
d337700c
...
...
@@ -87,12 +87,16 @@ sub flush_out {
$out_line
=
"";
}
use
if
$^O
eq
"
MSWin32
",
"
threads::shared
";
my
$flush_lock
:
shared
;
# Print to stdout
sub
print_out
{
if
(
IS_WIN32PERL
)
{
$out_line
.=
$_
[
0
];
# Flush buffered output on new lines.
if
(
rindex
(
$_
[
0
],
"
\n
")
!=
-
1
)
{
lock
(
$flush_lock
);
flush_out
();
}
}
else
{
...
...
storage/spider/mysql-test/spider/bugfix/r/mdev_33242.result
0 → 100644
View file @
d337700c
set @old_old_mode=@@global.old_mode;
set global old_mode=4;
INSTALL SONAME 'ha_spider.so';
set global old_mode=@old_old_mode;
storage/spider/mysql-test/spider/bugfix/t/mdev_33242.test
0 → 100644
View file @
d337700c
set
@
old_old_mode
=@@
global
.
old_mode
;
set
global
old_mode
=
4
;
INSTALL
SONAME
'ha_spider.so'
;
set
global
old_mode
=@
old_old_mode
;
--
disable_query_log
--
source
../../
include
/
clean_up_spider
.
inc
storage/spider/spd_init_query.h
View file @
d337700c
...
...
@@ -23,6 +23,9 @@ static LEX_STRING spider_init_queries[] = {
{
C_STRING_WITH_LEN
(
"SET @@SQL_MODE = REPLACE(@@SQL_MODE, 'ORACLE', '');"
)},
{
C_STRING_WITH_LEN
(
"SET @@OLD_MODE = CONCAT(@@OLD_MODE, ',UTF8_IS_UTF8MB3');"
)},
{
C_STRING_WITH_LEN
(
"create table if not exists mysql.spider_xa("
" format_id int not null default 0,"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment