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
9c6d75e8
Commit
9c6d75e8
authored
Sep 28, 2007
by
davi@moksha.local
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Post-merge fix for Bug 21136, initial merge missed the modifications for
the sql_class.h file.
parent
ae079ec4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletion
+6
-1
sql/sql_class.h
sql/sql_class.h
+6
-1
No files found.
sql/sql_class.h
View file @
9c6d75e8
...
...
@@ -2133,6 +2133,10 @@ class select_create: public select_insert {
TABLE_LIST
*
select_tables
;
Alter_info
*
alter_info
;
Field
**
field
;
/* lock data for tmp table */
MYSQL_LOCK
*
m_lock
;
/* m_lock or thd->extra_lock */
MYSQL_LOCK
**
m_plock
;
public:
select_create
(
TABLE_LIST
*
table_arg
,
HA_CREATE_INFO
*
create_info_par
,
...
...
@@ -2143,7 +2147,8 @@ public:
create_table
(
table_arg
),
create_info
(
create_info_par
),
select_tables
(
select_tables_arg
),
alter_info
(
alter_info_arg
)
alter_info
(
alter_info_arg
),
m_plock
(
NULL
)
{}
int
prepare
(
List
<
Item
>
&
list
,
SELECT_LEX_UNIT
*
u
);
...
...
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