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
fe966191
Commit
fe966191
authored
Sep 26, 2004
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge sanja.is.com.ua:/home/bell/mysql/bk/mysql-5.0
into sanja.is.com.ua:/home/bell/mysql/bk/work-dump-5.0
parents
6290faf7
fb8c82a9
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
2 deletions
+9
-2
sql/log_event.cc
sql/log_event.cc
+1
-1
sql/sql_trigger.cc
sql/sql_trigger.cc
+8
-1
No files found.
sql/log_event.cc
View file @
fe966191
...
...
@@ -571,7 +571,7 @@ bool Log_event::write_header(IO_CACHE* file, ulong event_data_length)
int4store
(
header
+
SERVER_ID_OFFSET
,
server_id
);
int4store
(
header
+
EVENT_LEN_OFFSET
,
data_written
);
int4store
(
header
+
LOG_POS_OFFSET
,
log_pos
);
int
4
store
(
header
+
FLAGS_OFFSET
,
flags
);
int
2
store
(
header
+
FLAGS_OFFSET
,
flags
);
DBUG_RETURN
(
my_b_safe_write
(
file
,
header
,
sizeof
(
header
))
!=
0
);
}
...
...
sql/sql_trigger.cc
View file @
fe966191
...
...
@@ -2,6 +2,7 @@
#include "sp_head.h"
#include "sql_trigger.h"
#include "parse_file.h"
#include "sql_acl.h"
static
const
LEX_STRING
triggers_file_type
=
{(
char
*
)
"TRIGGERS"
,
8
};
...
...
@@ -54,7 +55,13 @@ int mysql_create_or_drop_trigger(THD *thd, TABLE_LIST *tables, bool create)
if
(
open_and_lock_tables
(
thd
,
tables
))
DBUG_RETURN
(
-
1
);
// TODO: We should check if user has TRIGGER privilege for table here.
/*
TODO: We should check if user has TRIGGER privilege for table here.
Now we just require SUPER privilege for creating/dropping because
we don't have proper privilege checking for triggers in place yet.
*/
if
(
check_global_access
(
thd
,
SUPER_ACL
))
DBUG_RETURN
(
1
);
table
=
tables
->
table
;
...
...
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