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
2e580dc2
Commit
2e580dc2
authored
Aug 09, 2024
by
Oleksandr Byelkin
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch '10.6' into mariadb-10.6.19
parents
8f020508
f15de425
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
7 additions
and
9 deletions
+7
-9
CMakeLists.txt
CMakeLists.txt
+1
-5
VERSION
VERSION
+1
-1
sql/handler.cc
sql/handler.cc
+1
-1
storage/spider/spd_table.cc
storage/spider/spd_table.cc
+4
-2
No files found.
CMakeLists.txt
View file @
2e580dc2
...
...
@@ -192,11 +192,7 @@ ELSE()
ENDIF
()
IF
(
"
${
MYSQL_NO_DASH_VERSION
}
"
VERSION_LESS 11.2
)
SET
(
MEMPROTECT_DEFAULT ON
)
ELSE
()
SET
(
MEMPROTECT_DEFAULT OFF
)
ENDIF
()
SET
(
MEMPROTECT_DEFAULT ON
)
OPTION
(
WITH_PROTECT_STATEMENT_MEMROOT
"Enable protection of statement's memory root after first SP/PS execution. Turned into account only for debug build"
${
MEMPROTECT_DEFAULT
}
)
...
...
VERSION
View file @
2e580dc2
MYSQL_VERSION_MAJOR=10
MYSQL_VERSION_MINOR=6
MYSQL_VERSION_PATCH=
19
MYSQL_VERSION_PATCH=
20
SERVER_MATURITY=stable
sql/handler.cc
View file @
2e580dc2
...
...
@@ -782,7 +782,7 @@ int ha_initialize_handlerton(st_plugin_int *plugin)
update_discovery_counters
(
hton
,
1
);
if
(
ddl_recovery_done
&&
hton
->
signal_ddl_recovery_done
)
hton
->
signal_ddl_recovery_done
(
hton
);
ret
=
hton
->
signal_ddl_recovery_done
(
hton
);
DBUG_RETURN
(
ret
);
...
...
storage/spider/spd_table.cc
View file @
2e580dc2
...
...
@@ -6511,8 +6511,10 @@ bool spider_init_system_tables()
/*
Spider is typically loaded before ddl_recovery, but DDL statements
cannot be executed before ddl_recovery, so we delay system table creation.
Spider may be loaded before ddl_recovery (e.g. with
--plugin-load-add), but DDL statements in spider init queries cannot
be executed before ddl_recovery, so we execute these queries only
after ddl recovery.
*/
static
int
spider_after_ddl_recovery
(
handlerton
*
)
{
...
...
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