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
b479c27f
Commit
b479c27f
authored
Dec 21, 2005
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge bk-internal:/home/bk/mysql-5.0
into mysql.com:/usr/local/mysql/mysql-5.0 sql/sql_trigger.cc: Auto merged
parents
9ae226fe
3e3b2150
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
8 deletions
+8
-8
sql/item.cc
sql/item.cc
+1
-1
sql/sql_trigger.cc
sql/sql_trigger.cc
+7
-7
No files found.
sql/item.cc
View file @
b479c27f
...
@@ -949,7 +949,7 @@ void Item_splocal::print(String *str)
...
@@ -949,7 +949,7 @@ void Item_splocal::print(String *str)
*****************************************************************************/
*****************************************************************************/
Item_case_expr
::
Item_case_expr
(
int
case_expr_id
)
Item_case_expr
::
Item_case_expr
(
int
case_expr_id
)
:
Item_sp_variable
(
STRING_WITH_LEN
(
"case_expr"
)),
:
Item_sp_variable
(
(
char
*
)
STRING_WITH_LEN
(
"case_expr"
)),
m_case_expr_id
(
case_expr_id
)
m_case_expr_id
(
case_expr_id
)
{
{
}
}
...
...
sql/sql_trigger.cc
View file @
b479c27f
...
@@ -21,7 +21,7 @@
...
@@ -21,7 +21,7 @@
#include "parse_file.h"
#include "parse_file.h"
static
const
LEX_STRING
triggers_file_type
=
static
const
LEX_STRING
triggers_file_type
=
{
STRING_WITH_LEN
(
"TRIGGERS"
)};
{
(
char
*
)
STRING_WITH_LEN
(
"TRIGGERS"
)};
const
char
*
const
triggers_file_ext
=
".TRG"
;
const
char
*
const
triggers_file_ext
=
".TRG"
;
...
@@ -34,17 +34,17 @@ const char * const triggers_file_ext= ".TRG";
...
@@ -34,17 +34,17 @@ const char * const triggers_file_ext= ".TRG";
static
File_option
triggers_file_parameters
[]
=
static
File_option
triggers_file_parameters
[]
=
{
{
{
{
{
STRING_WITH_LEN
(
"triggers"
)
},
{
(
char
*
)
STRING_WITH_LEN
(
"triggers"
)
},
offsetof
(
class
Table_triggers_list
,
definitions_list
),
offsetof
(
class
Table_triggers_list
,
definitions_list
),
FILE_OPTIONS_STRLIST
FILE_OPTIONS_STRLIST
},
},
{
{
{
STRING_WITH_LEN
(
"sql_modes"
)
},
{
(
char
*
)
STRING_WITH_LEN
(
"sql_modes"
)
},
offsetof
(
class
Table_triggers_list
,
definition_modes_list
),
offsetof
(
class
Table_triggers_list
,
definition_modes_list
),
FILE_OPTIONS_ULLLIST
FILE_OPTIONS_ULLLIST
},
},
{
{
{
STRING_WITH_LEN
(
"definers"
)
},
{
(
char
*
)
STRING_WITH_LEN
(
"definers"
)
},
offsetof
(
class
Table_triggers_list
,
definers_list
),
offsetof
(
class
Table_triggers_list
,
definers_list
),
FILE_OPTIONS_STRLIST
FILE_OPTIONS_STRLIST
},
},
...
@@ -71,14 +71,14 @@ struct st_trigname
...
@@ -71,14 +71,14 @@ struct st_trigname
};
};
static
const
LEX_STRING
trigname_file_type
=
static
const
LEX_STRING
trigname_file_type
=
{
STRING_WITH_LEN
(
"TRIGGERNAME"
)};
{
(
char
*
)
STRING_WITH_LEN
(
"TRIGGERNAME"
)};
const
char
*
const
trigname_file_ext
=
".TRN"
;
const
char
*
const
trigname_file_ext
=
".TRN"
;
static
File_option
trigname_file_parameters
[]
=
static
File_option
trigname_file_parameters
[]
=
{
{
{
{
{
STRING_WITH_LEN
(
"trigger_table"
)},
{
(
char
*
)
STRING_WITH_LEN
(
"trigger_table"
)},
offsetof
(
struct
st_trigname
,
trigger_table
),
offsetof
(
struct
st_trigname
,
trigger_table
),
FILE_OPTIONS_ESTRING
FILE_OPTIONS_ESTRING
},
},
...
@@ -1243,7 +1243,7 @@ Handle_old_incorrect_sql_modes_hook::process_unknown_string(char *&unknown_key,
...
@@ -1243,7 +1243,7 @@ Handle_old_incorrect_sql_modes_hook::process_unknown_string(char *&unknown_key,
(
char
*
)
path
,
"TRIGGER"
);
(
char
*
)
path
,
"TRIGGER"
);
File_option
sql_modes_parameters
=
File_option
sql_modes_parameters
=
{
{
{
STRING_WITH_LEN
(
"sql_modes"
)
},
{
(
char
*
)
STRING_WITH_LEN
(
"sql_modes"
)
},
offsetof
(
class
Table_triggers_list
,
definition_modes_list
),
offsetof
(
class
Table_triggers_list
,
definition_modes_list
),
FILE_OPTIONS_ULLLIST
FILE_OPTIONS_ULLLIST
};
};
...
...
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