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
e69df83d
Commit
e69df83d
authored
Dec 14, 2006
by
msvensson@neptunus.(none)
Browse files
Options
Browse Files
Download
Plain Diff
Merge bk-internal:/home/bk/mysql-5.1-maint
into neptunus.(none):/home/msvensson/mysql/mysql-5.1-maint
parents
a31827f9
f8ac527b
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
79 additions
and
47 deletions
+79
-47
mysql-test/r/myisam.result
mysql-test/r/myisam.result
+0
-13
mysql-test/r/symlink.result
mysql-test/r/symlink.result
+21
-0
mysql-test/r/windows.result
mysql-test/r/windows.result
+6
-0
mysql-test/t/myisam.test
mysql-test/t/myisam.test
+0
-34
mysql-test/t/symlink.test
mysql-test/t/symlink.test
+37
-0
mysql-test/t/windows.test
mysql-test/t/windows.test
+9
-0
sql/sql_parse.cc
sql/sql_parse.cc
+6
-0
No files found.
mysql-test/r/myisam.result
View file @
e69df83d
...
@@ -1590,19 +1590,6 @@ show keys from t1;
...
@@ -1590,19 +1590,6 @@ show keys from t1;
Table Non_unique Key_name Seq_in_index Column_name Collation Cardinality Sub_part Packed Null Index_type Comment
Table Non_unique Key_name Seq_in_index Column_name Collation Cardinality Sub_part Packed Null Index_type Comment
t1 1 a 1 a A 8 NULL NULL YES BTREE
t1 1 a 1 a A 8 NULL NULL YES BTREE
drop table t1;
drop table t1;
show create table t1;
show create table t1;
create table t1 (a int) engine=myisam select 42 a;
select * from t1;
a
9
select * from t1;
a
99
select * from t1;
a
42
drop table t1;
End of 4.1 tests
End of 4.1 tests
create table t1 (c1 int) engine=myisam pack_keys=0;
create table t1 (c1 int) engine=myisam pack_keys=0;
create table t2 (c1 int) engine=myisam pack_keys=1;
create table t2 (c1 int) engine=myisam pack_keys=1;
...
...
mysql-test/r/symlink.result
View file @
e69df83d
...
@@ -111,3 +111,24 @@ t1 CREATE TABLE `t1` (
...
@@ -111,3 +111,24 @@ t1 CREATE TABLE `t1` (
`i` int(11) DEFAULT NULL
`i` int(11) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1
) ENGINE=MyISAM DEFAULT CHARSET=latin1
drop table t1;
drop table t1;
show create table t1;
Table Create Table
t1 CREATE TEMPORARY TABLE `t1` (
`a` int(11) default NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1 DATA DIRECTORY='MYSQL_TEST_DIR/var/log/'
show create table t1;
Table Create Table
t1 CREATE TEMPORARY TABLE `t1` (
`a` int(11) default NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1 DATA DIRECTORY='MYSQL_TEST_DIR/var/log/'
create table t1 (a int) engine=myisam select 42 a;
select * from t1;
a
9
select * from t1;
a
99
select * from t1;
a
42
drop table t1;
mysql-test/r/windows.result
View file @
e69df83d
...
@@ -6,6 +6,12 @@ use prn;
...
@@ -6,6 +6,12 @@ use prn;
ERROR 42000: Unknown database 'prn'
ERROR 42000: Unknown database 'prn'
create table nu (a int);
create table nu (a int);
drop table nu;
drop table nu;
drop table if exists t1;
CREATE TABLE t1 ( `ID` int(6) ) data directory 'c:/tmp/' index directory 'c:/tmp/' engine=MyISAM;
Warnings:
Warning 0 DATA DIRECTORY option ignored
Warning 0 INDEX DIRECTORY option ignored
drop table t1;
create procedure proc_1() install plugin my_plug soname '\\root\\some_plugin.dll';
create procedure proc_1() install plugin my_plug soname '\\root\\some_plugin.dll';
call proc_1();
call proc_1();
ERROR HY000: No paths allowed for shared library
ERROR HY000: No paths allowed for shared library
...
...
mysql-test/t/myisam.test
View file @
e69df83d
...
@@ -941,40 +941,6 @@ alter table t1 disable keys;
...
@@ -941,40 +941,6 @@ alter table t1 disable keys;
alter
table
t1
enable
keys
;
alter
table
t1
enable
keys
;
show
keys
from
t1
;
show
keys
from
t1
;
drop
table
t1
;
#
# Bug#8706 - temporary table with data directory option fails
#
connect
(
session1
,
localhost
,
root
,,);
connect
(
session2
,
localhost
,
root
,,);
connection
session1
;
disable_query_log
;
eval
create
temporary
table
t1
(
a
int
)
engine
=
myisam
data
directory
=
"
$MYSQLTEST_VARDIR
/tmp"
select
9
a
;
enable_query_log
;
disable_result_log
;
show
create
table
t1
;
enable_result_log
;
connection
session2
;
disable_query_log
;
eval
create
temporary
table
t1
(
a
int
)
engine
=
myisam
data
directory
=
"
$MYSQLTEST_VARDIR
/tmp"
select
99
a
;
enable_query_log
;
disable_result_log
;
show
create
table
t1
;
enable_result_log
;
connection
default
;
create
table
t1
(
a
int
)
engine
=
myisam
select
42
a
;
connection
session1
;
select
*
from
t1
;
disconnect
session1
;
connection
session2
;
select
*
from
t1
;
disconnect
session2
;
connection
default
;
select
*
from
t1
;
drop
table
t1
;
drop
table
t1
;
--
echo
End
of
4.1
tests
--
echo
End
of
4.1
tests
...
...
mysql-test/t/symlink.test
View file @
e69df83d
...
@@ -139,4 +139,41 @@ enable_query_log;
...
@@ -139,4 +139,41 @@ enable_query_log;
show
create
table
t1
;
show
create
table
t1
;
drop
table
t1
;
drop
table
t1
;
#
# Bug#8706 - temporary table with data directory option fails
#
connect
(
session1
,
localhost
,
root
,,);
connect
(
session2
,
localhost
,
root
,,);
connection
session1
;
disable_query_log
;
eval
create
temporary
table
t1
(
a
int
)
engine
=
myisam
data
directory
=
"
$MYSQL_TEST_DIR
/var/log"
select
9
a
;
enable_query_log
;
# If running test suite with a non standard tmp dir, the "show create table"
# will print "DATA_DIRECTORY=". Use replace_result to mask it out
--
replace_result
$MYSQL_TEST_DIR
MYSQL_TEST_DIR
show
create
table
t1
;
connection
session2
;
disable_query_log
;
eval
create
temporary
table
t1
(
a
int
)
engine
=
myisam
data
directory
=
"
$MYSQL_TEST_DIR
/var/log"
select
99
a
;
enable_query_log
;
# If running test suite with a non standard tmp dir, the "show create table"
# will print "DATA_DIRECTORY=". Use replace_result to mask it out
--
replace_result
$MYSQL_TEST_DIR
MYSQL_TEST_DIR
show
create
table
t1
;
connection
default
;
create
table
t1
(
a
int
)
engine
=
myisam
select
42
a
;
connection
session1
;
select
*
from
t1
;
disconnect
session1
;
connection
session2
;
select
*
from
t1
;
disconnect
session2
;
connection
default
;
select
*
from
t1
;
drop
table
t1
;
# End of 4.1 tests
# End of 4.1 tests
mysql-test/t/windows.test
View file @
e69df83d
...
@@ -17,6 +17,15 @@ use prn;
...
@@ -17,6 +17,15 @@ use prn;
create
table
nu
(
a
int
);
create
table
nu
(
a
int
);
drop
table
nu
;
drop
table
nu
;
#
# Bug17489: ailed to put data file in custom directory use "data directory" option
#
--
disable_warnings
drop
table
if
exists
t1
;
--
enable_warnings
CREATE
TABLE
t1
(
`ID`
int
(
6
)
)
data
directory
'c:/tmp/'
index
directory
'c:/tmp/'
engine
=
MyISAM
;
drop
table
t1
;
# End of 4.1 tests
# End of 4.1 tests
#
#
...
...
sql/sql_parse.cc
View file @
e69df83d
...
@@ -2955,6 +2955,12 @@ mysql_execute_command(THD *thd)
...
@@ -2955,6 +2955,12 @@ mysql_execute_command(THD *thd)
goto
end_with_restore_list
;
goto
end_with_restore_list
;
#ifndef HAVE_READLINK
#ifndef HAVE_READLINK
if
(
lex
->
create_info
.
data_file_name
)
push_warning
(
thd
,
MYSQL_ERROR
::
WARN_LEVEL_WARN
,
0
,
"DATA DIRECTORY option ignored"
);
if
(
lex
->
create_info
.
index_file_name
)
push_warning
(
thd
,
MYSQL_ERROR
::
WARN_LEVEL_WARN
,
0
,
"INDEX DIRECTORY option ignored"
);
lex
->
create_info
.
data_file_name
=
lex
->
create_info
.
index_file_name
=
0
;
lex
->
create_info
.
data_file_name
=
lex
->
create_info
.
index_file_name
=
0
;
#else
#else
/* Fix names if symlinked tables */
/* Fix names if symlinked tables */
...
...
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