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
81c12ae8
Commit
81c12ae8
authored
Jul 01, 2005
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge abarkov@bk-internal.mysql.com:/home/bk/mysql-5.0
into mysql.com:/usr/home/bar/mysql-5.0
parents
644e2497
a17ee9fa
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
9 deletions
+8
-9
sql/sp_head.h
sql/sp_head.h
+2
-3
sql/sql_lex.cc
sql/sql_lex.cc
+1
-1
sql/sql_yacc.yy
sql/sql_yacc.yy
+5
-5
No files found.
sql/sp_head.h
View file @
81c12ae8
...
@@ -470,11 +470,10 @@ class sp_instr_set_trigger_field : public sp_instr
...
@@ -470,11 +470,10 @@ class sp_instr_set_trigger_field : public sp_instr
public:
public:
sp_instr_set_trigger_field
(
Name_resolution_context
*
context_arg
,
sp_instr_set_trigger_field
(
uint
ip
,
sp_pcontext
*
ctx
,
uint
ip
,
sp_pcontext
*
ctx
,
Item_trigger_field
*
trg_fld
,
Item
*
val
)
Item_trigger_field
*
trg_fld
,
Item
*
val
)
:
sp_instr
(
ip
,
ctx
),
:
sp_instr
(
ip
,
ctx
),
trigger_field
(
context_arg
,
trg_fld
),
trigger_field
(
trg_fld
),
value
(
val
)
value
(
val
)
{}
{}
...
...
sql/sql_lex.cc
View file @
81c12ae8
...
@@ -1936,7 +1936,7 @@ void st_lex::link_first_table_back(TABLE_LIST *first,
...
@@ -1936,7 +1936,7 @@ void st_lex::link_first_table_back(TABLE_LIST *first,
{
{
first
->
next_local
=
(
TABLE_LIST
*
)
select_lex
.
table_list
.
first
;
first
->
next_local
=
(
TABLE_LIST
*
)
select_lex
.
table_list
.
first
;
select_lex
.
table_list
.
first
=
select_lex
.
table_list
.
first
=
(
byte
*
)
select_lex
.
context
.
table_list
=
first
;
(
byte
*
)
(
select_lex
.
context
.
table_list
=
first
)
;
select_lex
.
table_list
.
elements
++
;
//safety
select_lex
.
table_list
.
elements
++
;
//safety
}
}
}
}
...
...
sql/sql_yacc.yy
View file @
81c12ae8
...
@@ -7743,13 +7743,13 @@ sys_option_value:
...
@@ -7743,13 +7743,13 @@ sys_option_value:
it= new Item_null();
it= new Item_null();
}
}
if (!(trg_fld= new Item_trigger_field(&lex->current_select->context,
if (!(trg_fld= new Item_trigger_field(&lex->current_select->
context,
Item_trigger_field::NEW_ROW,
Item_trigger_field::NEW_ROW,
$2.base_name.str)) ||
$2.base_name.str)) ||
!(i= new sp_instr_set_trigger_field(
!(i= new sp_instr_set_trigger_field(lex->sphead->
&lex->current_select->context,
instructions(),
lex->sphead->instructions(), lex->spcont,
lex->spcont, trg_fld, it)))
trg_fld, it)))
YYABORT;
YYABORT;
/*
/*
...
...
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