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
122ea137
Commit
122ea137
authored
Oct 05, 2007
by
mhansson@dl145s.mysql.com
Browse files
Options
Browse Files
Download
Plain Diff
Merge mhansson@bk-internal:/home/bk/mysql-5.1-opt
into dl145s.mysql.com:/data0/mhansson/bug30942/my51-bug30942
parents
02dacd20
e19efc0a
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
13 deletions
+7
-13
mysql-test/r/information_schema.result
mysql-test/r/information_schema.result
+4
-4
mysql-test/t/information_schema.test
mysql-test/t/information_schema.test
+2
-3
sql/ha_partition.cc
sql/ha_partition.cc
+1
-6
No files found.
mysql-test/r/information_schema.result
View file @
122ea137
...
...
@@ -1470,10 +1470,10 @@ f7 datetime NO NULL
f8 datetime YES 2006-01-01 00:00:00
drop table t1;
End of 5.0 tests.
show fields from information_schema.
TABLE_NAMES
;
ERROR 42S02: Unknown table '
TABLE_NAMES
' in information_schema
show keys from information_schema.
TABLE_NAMES
;
ERROR 42S02: Unknown table '
TABLE_NAMES
' in information_schema
show fields from information_schema.
table_names
;
ERROR 42S02: Unknown table '
table_names
' in information_schema
show keys from information_schema.
table_names
;
ERROR 42S02: Unknown table '
table_names
' in information_schema
select * from information_schema.engines WHERE ENGINE="MyISAM";
ENGINE SUPPORT COMMENT TRANSACTIONS XA SAVEPOINTS
MyISAM DEFAULT Default engine as of MySQL 3.23 with great performance NO NO NO
...
...
mysql-test/t/information_schema.test
View file @
122ea137
...
...
@@ -1095,10 +1095,9 @@ drop table t1;
# Bug#30079 A check for "hidden" I_S tables is flawed
#
--
error
1109
show
fields
from
information_schema
.
TABLE_NAMES
;
show
fields
from
information_schema
.
table_names
;
--
error
1109
show
keys
from
information_schema
.
TABLE_NAMES
;
show
keys
from
information_schema
.
table_names
;
#
# Show engines
#
...
...
sql/ha_partition.cc
View file @
122ea137
...
...
@@ -2914,12 +2914,7 @@ void ha_partition::start_bulk_insert(ha_rows rows)
handler
**
file
;
DBUG_ENTER
(
"ha_partition::start_bulk_insert"
);
if
(
!
rows
)
{
/* Avoid allocation big caches in all underlaying handlers */
DBUG_VOID_RETURN
;
}
rows
=
rows
/
m_tot_parts
+
1
;
rows
=
rows
?
rows
/
m_tot_parts
+
1
:
0
;
file
=
m_file
;
do
{
...
...
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