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
22e2d7a1
Commit
22e2d7a1
authored
Apr 25, 2005
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge joreland@bk-internal.mysql.com:/home/bk/mysql-5.0
into mysql.com:/home/jonas/src/mysql-5.0
parents
49f2ba25
fe3f2f8d
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
86 additions
and
17 deletions
+86
-17
mysql-test/r/view.result
mysql-test/r/view.result
+18
-0
mysql-test/t/view.test
mysql-test/t/view.test
+14
-0
scripts/mysql_tableinfo.sh
scripts/mysql_tableinfo.sh
+25
-7
sql/ha_ndbcluster.cc
sql/ha_ndbcluster.cc
+13
-4
sql/item_timefunc.cc
sql/item_timefunc.cc
+2
-2
sql/sql_view.cc
sql/sql_view.cc
+14
-4
No files found.
mysql-test/r/view.result
View file @
22e2d7a1
...
@@ -1694,3 +1694,21 @@ col1 col2 col2 col3
...
@@ -1694,3 +1694,21 @@ col1 col2 col2 col3
5 david NULL NULL
5 david NULL NULL
DROP VIEW v1,v2,v3;
DROP VIEW v1,v2,v3;
DROP TABLE t1,t2;
DROP TABLE t1,t2;
create table t1 as select 1 A union select 2 union select 3;
create table t2 as select * from t1;
create view v1 as select * from t1 where a in (select * from t2);
select * from v1 A, v1 B where A.a = B.a;
A A
1 1
2 2
3 3
create table t3 as select a a,a b from t2;
create view v2 as select * from t3 where
a in (select * from t1) or b in (select * from t2);
select * from v2 A, v2 B where A.a = B.b;
a b a b
1 1 1 1
2 2 2 2
3 3 3 3
drop view v1, v2;
drop table t1, t2, t3;
mysql-test/t/view.test
View file @
22e2d7a1
...
@@ -1519,3 +1519,17 @@ SELECT a.col1,a.col2,b.col2,b.col3
...
@@ -1519,3 +1519,17 @@ SELECT a.col1,a.col2,b.col2,b.col3
DROP
VIEW
v1
,
v2
,
v3
;
DROP
VIEW
v1
,
v2
,
v3
;
DROP
TABLE
t1
,
t2
;
DROP
TABLE
t1
,
t2
;
# BUG#8490 Select from views containing subqueries causes server to hang
# forever.
create
table
t1
as
select
1
A
union
select
2
union
select
3
;
create
table
t2
as
select
*
from
t1
;
create
view
v1
as
select
*
from
t1
where
a
in
(
select
*
from
t2
);
select
*
from
v1
A
,
v1
B
where
A
.
a
=
B
.
a
;
create
table
t3
as
select
a
a
,
a
b
from
t2
;
create
view
v2
as
select
*
from
t3
where
a
in
(
select
*
from
t1
)
or
b
in
(
select
*
from
t2
);
select
*
from
v2
A
,
v2
B
where
A
.
a
=
B
.
b
;
drop
view
v1
,
v2
;
drop
table
t1
,
t2
,
t3
;
scripts/mysql_tableinfo.sh
View file @
22e2d7a1
...
@@ -6,6 +6,14 @@ use DBI;
...
@@ -6,6 +6,14 @@ use DBI;
=
head1 NAME
=
head1 NAME
WARNING: MySQL versions 5.0 and above feature the INFORMATION_SCHEMA
pseudo-database which contains always up-to-date metadata information
about all tables. So instead of using this script one can now
simply query the INFORMATION_SCHEMA.SCHEMATA, INFORMATION_SCHEMA.TABLES,
INFORMATION_SCHEMA.COLUMNS, INFORMATION_SCHEMA.STATISTICS pseudo-tables.
Please see the MySQL manual
for
more information about INFORMATION_SCHEMA.
This script will be removed from the MySQL distribution
in
version 5.1.
mysql_tableinfo - creates and populates information tables with
mysql_tableinfo - creates and populates information tables with
the output of SHOW DATABASES, SHOW TABLES
(
or SHOW TABLE STATUS
)
,
the output of SHOW DATABASES, SHOW TABLES
(
or SHOW TABLE STATUS
)
,
SHOW COLUMNS and SHOW INDEX.
SHOW COLUMNS and SHOW INDEX.
...
@@ -62,6 +70,19 @@ GetOptions( \%opt,
...
@@ -62,6 +70,19 @@ GetOptions( \%opt,
"quiet|q"
,
"quiet|q"
,
)
or usage
(
"Invalid option"
)
;
)
or usage
(
"Invalid option"
)
;
if
(!
$opt
{
'quiet'
})
{
print
<<
EOF
WARNING: MySQL versions 5.0 and above feature the INFORMATION_SCHEMA
pseudo-database which contains always up-to-date metadata information
about all tables. So instead of using this script one can now
simply query the INFORMATION_SCHEMA.SCHEMATA, INFORMATION_SCHEMA.TABLES,
INFORMATION_SCHEMA.COLUMNS, INFORMATION_SCHEMA.STATISTICS pseudo-tables.
Please see the MySQL manual for more information about INFORMATION_SCHEMA.
This script will be removed from the MySQL distribution in version 5.1.
EOF
}
if
(
$opt
{
'help'
})
{
usage
()
;
}
if
(
$opt
{
'help'
})
{
usage
()
;
}
my
(
$db_to_write
,
$db_like_wild
,
$tbl_like_wild
)
;
my
(
$db_to_write
,
$db_like_wild
,
$tbl_like_wild
)
;
...
@@ -104,7 +125,7 @@ $tbl_like_wild=$dbh->quote($tbl_like_wild);
...
@@ -104,7 +125,7 @@ $tbl_like_wild=$dbh->quote($tbl_like_wild);
if
(!
$opt
{
'quiet'
})
if
(!
$opt
{
'quiet'
})
{
{
print
"
\n
!! This program is
d
oing to do:
\n\n
"
;
print
"
\n
!! This program is
g
oing to do:
\n\n
"
;
print
"**DROP** TABLE ...
\n
"
if
(
$opt
{
'clear'
}
or
$opt
{
'clear-only'
})
;
print
"**DROP** TABLE ...
\n
"
if
(
$opt
{
'clear'
}
or
$opt
{
'clear-only'
})
;
print
"**DELETE** FROM ... WHERE
`
Database
`
LIKE
$db_like_wild
AND
`
Table
`
LIKE
$tbl_like_wild
print
"**DELETE** FROM ... WHERE
`
Database
`
LIKE
$db_like_wild
AND
`
Table
`
LIKE
$tbl_like_wild
**INSERT** INTO ...
**INSERT** INTO ...
...
@@ -456,17 +477,14 @@ UNIX domain socket to use when connecting to server
...
@@ -456,17 +477,14 @@ UNIX domain socket to use when connecting to server
=head1 WARRANTY
=head1 WARRANTY
This software is free and comes without warranty of any kind. You
This software is free and comes without warranty of any kind.
should never trust backup software without studying the code yourself.
Study the code inside this script and only rely on it if I<you> believe
that it does the right thing for you.
Patches adding bug fixes, documentation and new features are welcome.
Patches adding bug fixes, documentation and new features are welcome.
=head1 TO DO
=head1 TO DO
Use extended inserts to be faster (for servers with many databases
Nothing: starting from MySQL 5.0, this program is replaced by the
or tables). But to do that, must care about net-buffer-length
.
INFORMATION_SCHEMA pseudo-database
.
=head1 AUTHOR
=head1 AUTHOR
...
...
sql/ha_ndbcluster.cc
View file @
22e2d7a1
/* Copyright (C) 2000-2003 MySQL AB
/* Copyright (C) 2000-2003 MySQL AB
This program is free software; you can redistribute it and/or modify
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
it under the terms of the GNU General Public License as published by
...
@@ -4479,6 +4479,7 @@ int ndbcluster_drop_database(const char *path)
...
@@ -4479,6 +4479,7 @@ int ndbcluster_drop_database(const char *path)
uint
i
;
uint
i
;
char
*
tabname
;
char
*
tabname
;
List
<
char
>
drop_list
;
List
<
char
>
drop_list
;
int
ret
=
0
;
ha_ndbcluster
::
set_dbname
(
path
,
(
char
*
)
&
dbname
);
ha_ndbcluster
::
set_dbname
(
path
,
(
char
*
)
&
dbname
);
DBUG_PRINT
(
"enter"
,
(
"db: %s"
,
dbname
));
DBUG_PRINT
(
"enter"
,
(
"db: %s"
,
dbname
));
...
@@ -4505,10 +4506,18 @@ int ndbcluster_drop_database(const char *path)
...
@@ -4505,10 +4506,18 @@ int ndbcluster_drop_database(const char *path)
ndb
->
setDatabaseName
(
dbname
);
ndb
->
setDatabaseName
(
dbname
);
List_iterator_fast
<
char
>
it
(
drop_list
);
List_iterator_fast
<
char
>
it
(
drop_list
);
while
((
tabname
=
it
++
))
while
((
tabname
=
it
++
))
{
if
(
dict
->
dropTable
(
tabname
))
if
(
dict
->
dropTable
(
tabname
))
ERR_RETURN
(
dict
->
getNdbError
());
{
const
NdbError
err
=
dict
->
getNdbError
();
DBUG_RETURN
(
0
);
if
(
err
.
code
!=
709
)
{
ERR_PRINT
(
err
);
ret
=
ndb_to_mysql_error
(
&
err
);
}
}
}
DBUG_RETURN
(
ret
);
}
}
...
...
sql/item_timefunc.cc
View file @
22e2d7a1
...
@@ -814,14 +814,14 @@ static bool calc_time_diff(TIME *l_time1, TIME *l_time2, int l_sign,
...
@@ -814,14 +814,14 @@ static bool calc_time_diff(TIME *l_time1, TIME *l_time2, int l_sign,
We should check it before calc_time_diff call.
We should check it before calc_time_diff call.
*/
*/
if
(
l_time1
->
time_type
==
MYSQL_TIMESTAMP_TIME
)
// Time value
if
(
l_time1
->
time_type
==
MYSQL_TIMESTAMP_TIME
)
// Time value
days
=
l_time1
->
day
-
l_sign
*
l_time2
->
day
;
days
=
(
long
)
l_time1
->
day
-
l_sign
*
(
long
)
l_time2
->
day
;
else
else
{
{
days
=
calc_daynr
((
uint
)
l_time1
->
year
,
days
=
calc_daynr
((
uint
)
l_time1
->
year
,
(
uint
)
l_time1
->
month
,
(
uint
)
l_time1
->
month
,
(
uint
)
l_time1
->
day
);
(
uint
)
l_time1
->
day
);
if
(
l_time2
->
time_type
==
MYSQL_TIMESTAMP_TIME
)
if
(
l_time2
->
time_type
==
MYSQL_TIMESTAMP_TIME
)
days
-=
l_sign
*
l_time2
->
day
;
days
-=
l_sign
*
(
long
)
l_time2
->
day
;
else
else
days
-=
l_sign
*
calc_daynr
((
uint
)
l_time2
->
year
,
days
-=
l_sign
*
calc_daynr
((
uint
)
l_time2
->
year
,
(
uint
)
l_time2
->
month
,
(
uint
)
l_time2
->
month
,
...
...
sql/sql_view.cc
View file @
22e2d7a1
...
@@ -796,17 +796,27 @@ mysql_make_view(File_parser *parser, TABLE_LIST *table)
...
@@ -796,17 +796,27 @@ mysql_make_view(File_parser *parser, TABLE_LIST *table)
/* Store WHERE clause for post-processing in setup_ancestor */
/* Store WHERE clause for post-processing in setup_ancestor */
table
->
where
=
view_select
->
where
;
table
->
where
=
view_select
->
where
;
/*
/*
Add subqueries units to SELECT in which we merging current view.
Add subqueries units to SELECT into which we merging current view.
unit(->next)* chain starts with subqueries that are used by this
view and continues with subqueries that are used by other views.
We must not add any subquery twice (otherwise we'll form a loop),
to do this we remember in end_unit the first subquery that has
been already added.
NOTE: we do not support UNION here, so we take only one select
NOTE: we do not support UNION here, so we take only one select
*/
*/
SELECT_LEX_NODE
*
end_unit
=
table
->
select_lex
->
slave
;
SELECT_LEX_UNIT
*
next_unit
;
for
(
SELECT_LEX_UNIT
*
unit
=
lex
->
select_lex
.
first_inner_unit
();
for
(
SELECT_LEX_UNIT
*
unit
=
lex
->
select_lex
.
first_inner_unit
();
unit
;
unit
;
unit
=
unit
->
next_unit
()
)
unit
=
next_unit
)
{
{
if
(
unit
==
end_unit
)
break
;
SELECT_LEX_NODE
*
save_slave
=
unit
->
slave
;
SELECT_LEX_NODE
*
save_slave
=
unit
->
slave
;
next_unit
=
unit
->
next_unit
();
unit
->
include_down
(
table
->
select_lex
);
unit
->
include_down
(
table
->
select_lex
);
unit
->
slave
=
save_slave
;
// fix include_down initialisation
unit
->
slave
=
save_slave
;
// fix include_down initialisation
}
}
...
...
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