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
e6ec2b3b
Commit
e6ec2b3b
authored
Aug 24, 2023
by
Oleksandr Byelkin
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch '11.1' into mariadb-11.1.2
parents
9bc25d98
676a913c
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
.gitignore
.gitignore
+1
-0
VERSION
VERSION
+1
-1
sql/events.cc
sql/events.cc
+2
-3
No files found.
.gitignore
View file @
e6ec2b3b
...
@@ -123,6 +123,7 @@ scripts/mysql_find_rows
...
@@ -123,6 +123,7 @@ scripts/mysql_find_rows
scripts/mysql_fix_extensions
scripts/mysql_fix_extensions
scripts/mariadb_fix_privilege_tables.sql
scripts/mariadb_fix_privilege_tables.sql
scripts/mariadb_fix_privilege_tables_sql.c
scripts/mariadb_fix_privilege_tables_sql.c
scripts/mariadb_sys_schema.sql
scripts/mysql_install_db
scripts/mysql_install_db
scripts/mysql_secure_installation
scripts/mysql_secure_installation
scripts/mysql_setpermission
scripts/mysql_setpermission
...
...
VERSION
View file @
e6ec2b3b
MYSQL_VERSION_MAJOR=11
MYSQL_VERSION_MAJOR=11
MYSQL_VERSION_MINOR=1
MYSQL_VERSION_MINOR=1
MYSQL_VERSION_PATCH=
2
MYSQL_VERSION_PATCH=
3
SERVER_MATURITY=stable
SERVER_MATURITY=stable
sql/events.cc
View file @
e6ec2b3b
...
@@ -886,9 +886,9 @@ Events::init(THD *thd, bool opt_noacl_or_bootstrap)
...
@@ -886,9 +886,9 @@ Events::init(THD *thd, bool opt_noacl_or_bootstrap)
/*
/*
Was disabled explicitly from the command line
Was disabled explicitly from the command line
*/
*/
if
(
opt_event_scheduler
==
Events
::
EVENTS_DISABLED
)
if
(
opt_event_scheduler
==
Events
::
EVENTS_DISABLED
||
opt_bootstrap
)
DBUG_RETURN
(
FALSE
);
DBUG_RETURN
(
FALSE
);
else
if
(
opt_noacl_or_bootstrap
)
if
(
opt_noacl_or_bootstrap
)
{
{
if
(
opt_event_scheduler
==
Events
::
EVENTS_ON
)
if
(
opt_event_scheduler
==
Events
::
EVENTS_ON
)
sql_print_error
(
"Event Scheduler will not function when starting with %s"
,
sql_print_error
(
"Event Scheduler will not function when starting with %s"
,
...
@@ -900,7 +900,6 @@ Events::init(THD *thd, bool opt_noacl_or_bootstrap)
...
@@ -900,7 +900,6 @@ Events::init(THD *thd, bool opt_noacl_or_bootstrap)
/* We need a temporary THD during boot */
/* We need a temporary THD during boot */
if
(
!
thd
)
if
(
!
thd
)
{
{
if
(
!
(
thd
=
new
THD
(
0
)))
if
(
!
(
thd
=
new
THD
(
0
)))
{
{
res
=
TRUE
;
res
=
TRUE
;
...
...
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