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
00be9354
Commit
00be9354
authored
Mar 24, 2008
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge mhansson@bk-internal.mysql.com:/home/bk/mysql-5.0-opt
into riffraff.(none):/data0/autopush/my50-bug34529
parents
21bd55af
3c5894ba
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
33 additions
and
0 deletions
+33
-0
mysql-test/r/information_schema.result
mysql-test/r/information_schema.result
+10
-0
mysql-test/t/information_schema.test
mysql-test/t/information_schema.test
+21
-0
sql/sql_show.cc
sql/sql_show.cc
+2
-0
No files found.
mysql-test/r/information_schema.result
View file @
00be9354
...
...
@@ -1422,3 +1422,13 @@ 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
USE information_schema;
SET max_heap_table_size = 16384;
CREATE TABLE test.t1( a INT );
SELECT *
FROM tables ta
JOIN collations co ON ( co.collation_name = ta.table_catalog )
JOIN character_sets cs ON ( cs.character_set_name = ta.table_catalog );
TABLE_CATALOG TABLE_SCHEMA TABLE_NAME TABLE_TYPE ENGINE VERSION ROW_FORMAT TABLE_ROWS AVG_ROW_LENGTH DATA_LENGTH MAX_DATA_LENGTH INDEX_LENGTH DATA_FREE AUTO_INCREMENT CREATE_TIME UPDATE_TIME CHECK_TIME TABLE_COLLATION CHECKSUM CREATE_OPTIONS TABLE_COMMENT COLLATION_NAME CHARACTER_SET_NAME ID IS_DEFAULT IS_COMPILED SORTLEN CHARACTER_SET_NAME DEFAULT_COLLATE_NAME DESCRIPTION MAXLEN
DROP TABLE test.t1;
SET max_heap_table_size = DEFAULT;
mysql-test/t/information_schema.test
View file @
00be9354
...
...
@@ -1118,3 +1118,24 @@ show fields from information_schema.table_names;
--
error
1109
show
keys
from
information_schema
.
table_names
;
#
# Bug#34529: Crash on complex Falcon I_S select after ALTER .. PARTITION BY
#
USE
information_schema
;
SET
max_heap_table_size
=
16384
;
CREATE
TABLE
test
.
t1
(
a
INT
);
# What we need to create here is a bit of a corner case:
# We need a star query with information_schema tables, where the first
# branch of the star join produces zero rows, so that reading of the
# second branch never happens. At the same time we have to make sure
# that data for at least the last table is swapped from MEMORY/HEAP to
# MyISAM. This and only this triggers the bug.
SELECT
*
FROM
tables
ta
JOIN
collations
co
ON
(
co
.
collation_name
=
ta
.
table_catalog
)
JOIN
character_sets
cs
ON
(
cs
.
character_set_name
=
ta
.
table_catalog
);
DROP
TABLE
test
.
t1
;
SET
max_heap_table_size
=
DEFAULT
;
sql/sql_show.cc
View file @
00be9354
...
...
@@ -4073,9 +4073,11 @@ bool get_schema_tables_result(JOIN *join,
{
result
=
1
;
join
->
error
=
1
;
tab
->
read_record
.
file
=
table_list
->
table
->
file
;
table_list
->
schema_table_state
=
executed_place
;
break
;
}
tab
->
read_record
.
file
=
table_list
->
table
->
file
;
table_list
->
schema_table_state
=
executed_place
;
}
}
...
...
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