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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
53944e1c
Commit
53944e1c
authored
Feb 16, 2005
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix for bug#7915: crash,JOIN VIEW, subquery, SELECT .. FROM INFORMATION_SCHEMA.COLUMNS
parent
b1f5ed9d
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
23 additions
and
0 deletions
+23
-0
mysql-test/r/information_schema.result
mysql-test/r/information_schema.result
+6
-0
mysql-test/t/information_schema.test
mysql-test/t/information_schema.test
+11
-0
sql/sql_lex.cc
sql/sql_lex.cc
+6
-0
No files found.
mysql-test/r/information_schema.result
View file @
53944e1c
...
@@ -604,3 +604,9 @@ Variable_name Value
...
@@ -604,3 +604,9 @@ Variable_name Value
show global status like "Threads_running";
show global status like "Threads_running";
Variable_name Value
Variable_name Value
Threads_running 1
Threads_running 1
create table t1(f1 int);
create table t2(f2 int);
create view v1 as select * from t1, t2;
set @got_val= (select count(*) from information_schema.columns);
drop view v1;
drop table t1, t2;
mysql-test/t/information_schema.test
View file @
53944e1c
...
@@ -352,3 +352,14 @@ show variables where variable_name like "skip_show_databas";
...
@@ -352,3 +352,14 @@ show variables where variable_name like "skip_show_databas";
# Bug #7981:SHOW GLOBAL STATUS crashes server
# Bug #7981:SHOW GLOBAL STATUS crashes server
#
#
show
global
status
like
"Threads_running"
;
show
global
status
like
"Threads_running"
;
#
# Bug #7915 crash,JOIN VIEW, subquery,
# SELECT .. FROM INFORMATION_SCHEMA.COLUMNS
#
create
table
t1
(
f1
int
);
create
table
t2
(
f2
int
);
create
view
v1
as
select
*
from
t1
,
t2
;
set
@
got_val
=
(
select
count
(
*
)
from
information_schema
.
columns
);
drop
view
v1
;
drop
table
t1
,
t2
;
sql/sql_lex.cc
View file @
53944e1c
...
@@ -1733,6 +1733,12 @@ bool st_lex::can_not_use_merged()
...
@@ -1733,6 +1733,12 @@ bool st_lex::can_not_use_merged()
{
{
case
SQLCOM_CREATE_VIEW
:
case
SQLCOM_CREATE_VIEW
:
case
SQLCOM_SHOW_CREATE
:
case
SQLCOM_SHOW_CREATE
:
/*
SQLCOM_SHOW_FIELDS is necessary to make
information schema tables working correctly with views.
see get_schema_tables_result function
*/
case
SQLCOM_SHOW_FIELDS
:
return
TRUE
;
return
TRUE
;
default:
default:
return
FALSE
;
return
FALSE
;
...
...
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