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
f614f19e
Commit
f614f19e
authored
Jun 06, 2001
by
mikef@nslinuxw4.bedford.progress.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
sql_table.cc re-apply a lost change where we check to see if the
sql_table.cc table handler supports temporary tables
parent
16a1120d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
8 deletions
+8
-8
BitKeeper/etc/logging_ok
BitKeeper/etc/logging_ok
+1
-8
sql/sql_table.cc
sql/sql_table.cc
+7
-0
No files found.
BitKeeper/etc/logging_ok
View file @
f614f19e
heikki@donna.mysql.fi
jani@janikt.pp.saunalahti.fi
monty@hundin.mysql.fi
mwagner@evoq.mwagner.org
paul@central.snake.net
sasha@mysql.sashanet.com
serg@serg.mysql.com
paul@teton.kitebird.com
mikef@nslinuxw4.bedford.progress.com
sql/sql_table.cc
View file @
f614f19e
...
...
@@ -221,6 +221,13 @@ int mysql_create_table(THD *thd,const char *db, const char *table_name,
db_options
|=
HA_OPTION_PACK_RECORD
;
file
=
get_new_handler
((
TABLE
*
)
0
,
create_info
->
db_type
);
if
((
create_info
->
options
&
HA_LEX_CREATE_TMP_TABLE
)
&&
(
file
->
option_flag
()
&
HA_NO_TEMP_TABLES
))
{
my_error
(
ER_ILLEGAL_HA
,
MYF
(
0
),
table_name
);
DBUG_RETURN
(
-
1
);
}
/* Don't pack keys in old tables if the user has requested this */
while
((
sql_field
=
it
++
))
...
...
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