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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
8ec6c354
Commit
8ec6c354
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
0e6a93ec
497b8865
Changes
3
Show 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 @
8ec6c354
...
...
@@ -470,11 +470,10 @@ class sp_instr_set_trigger_field : public sp_instr
public:
sp_instr_set_trigger_field
(
Name_resolution_context
*
context_arg
,
uint
ip
,
sp_pcontext
*
ctx
,
sp_instr_set_trigger_field
(
uint
ip
,
sp_pcontext
*
ctx
,
Item_trigger_field
*
trg_fld
,
Item
*
val
)
:
sp_instr
(
ip
,
ctx
),
trigger_field
(
context_arg
,
trg_fld
),
trigger_field
(
trg_fld
),
value
(
val
)
{}
...
...
sql/sql_lex.cc
View file @
8ec6c354
...
...
@@ -1936,7 +1936,7 @@ void st_lex::link_first_table_back(TABLE_LIST *first,
{
first
->
next_local
=
(
TABLE_LIST
*
)
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
}
}
...
...
sql/sql_yacc.yy
View file @
8ec6c354
...
...
@@ -7743,13 +7743,13 @@ sys_option_value:
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,
$2.base_name.str)) ||
!(i= new sp_instr_set_trigger_field(
&lex->current_select->context,
lex->sphead->instructions(), lex->spcont,
trg_fld, it)))
!(i= new sp_instr_set_trigger_field(lex->sphead->
instructions(),
lex->spcont, trg_fld, it)))
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