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
46d8e5fa
Commit
46d8e5fa
authored
May 09, 2006
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge baker@bk-internal.mysql.com:/home/bk/mysql-5.1-new
into zim.(none):/home/brian/mysql/dep-5.1
parents
3aa2d18c
7b111efc
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
36 additions
and
33 deletions
+36
-33
BUILD/autorun.sh
BUILD/autorun.sh
+10
-7
mysql-test/r/ctype_utf8.result
mysql-test/r/ctype_utf8.result
+4
-4
mysql-test/r/heap.result
mysql-test/r/heap.result
+3
-3
mysql-test/r/ndb_index_unique.result
mysql-test/r/ndb_index_unique.result
+3
-3
mysql-test/r/ndb_partition_key.result
mysql-test/r/ndb_partition_key.result
+2
-2
mysql-test/r/show_check.result
mysql-test/r/show_check.result
+7
-7
mysql-test/r/sql_mode.result
mysql-test/r/sql_mode.result
+3
-3
mysql-test/t/ndb_index_unique.test
mysql-test/t/ndb_index_unique.test
+3
-3
mysql-test/t/ndb_partition_key.test
mysql-test/t/ndb_partition_key.test
+1
-1
No files found.
BUILD/autorun.sh
View file @
46d8e5fa
...
...
@@ -3,20 +3,23 @@
die
()
{
echo
"
$@
"
;
exit
1
;
}
# Added glibtoolize reference to make native OSX autotools work
if
[
-f
/usr/bin/glibtoolize
]
then
LIBTOOLIZE
=
glibtoolize
else
LIBTOOLIZE
=
libtoolize
fi
(
cd
storage/bdb/dist
&&
sh s_all
)
(
cd
storage/innobase
&&
aclocal
&&
autoheader
&&
\
libtoolize
--automake
--force
--copy
&&
\
$LIBTOOLIZE
--automake
--force
--copy
&&
\
automake
--force
--add-missing
--copy
&&
autoconf
)
aclocal
||
die
"Can't execute aclocal"
autoheader
||
die
"Can't execute autoheader"
# --force means overwrite ltmain.sh script if it already exists
# Added glibtoolize reference to make native OSX autotools work
if
test
-f
/usr/bin/glibtoolize
;
then
glibtoolize
--automake
--force
||
die
"Can't execute glibtoolize"
else
libtoolize
--automake
--force
||
die
"Can't execute libtoolize"
fi
$LIBTOOLIZE
--automake
--force
||
die
"Can't execute libtoolize"
# --add-missing instructs automake to install missing auxiliary files
# and --force to overwrite them if they already exist
...
...
mysql-test/r/ctype_utf8.result
View file @
46d8e5fa
...
...
@@ -412,7 +412,7 @@ show create table t1;
Table Create Table
t1 CREATE TABLE `t1` (
`c` char(10) CHARACTER SET utf8 DEFAULT NULL,
UNIQUE KEY `a`
USING HASH (`c`(1))
UNIQUE KEY `a`
(`c`(1)) USING HASH
) ENGINE=MEMORY DEFAULT CHARSET=latin1
insert into t1 values ('a'),('b'),('c'),('d'),('e'),('f');
insert into t1 values ('aa');
...
...
@@ -448,7 +448,7 @@ show create table t1;
Table Create Table
t1 CREATE TABLE `t1` (
`c` char(10) CHARACTER SET utf8 DEFAULT NULL,
UNIQUE KEY `a`
USING BTREE (`c`(1))
UNIQUE KEY `a`
(`c`(1)) USING BTREE
) ENGINE=MEMORY DEFAULT CHARSET=latin1
insert into t1 values ('a'),('b'),('c'),('d'),('e'),('f');
insert into t1 values ('aa');
...
...
@@ -570,7 +570,7 @@ show create table t1;
Table Create Table
t1 CREATE TABLE `t1` (
`c` char(10) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT NULL,
UNIQUE KEY `a`
USING HASH (`c`(1))
UNIQUE KEY `a`
(`c`(1)) USING HASH
) ENGINE=MEMORY DEFAULT CHARSET=latin1
insert into t1 values ('a'),('b'),('c'),('d'),('e'),('f');
insert into t1 values ('aa');
...
...
@@ -606,7 +606,7 @@ show create table t1;
Table Create Table
t1 CREATE TABLE `t1` (
`c` char(10) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT NULL,
UNIQUE KEY `a`
USING BTREE (`c`(1))
UNIQUE KEY `a`
(`c`(1)) USING BTREE
) ENGINE=MEMORY DEFAULT CHARSET=latin1
insert into t1 values ('a'),('b'),('c'),('d'),('e'),('f');
insert into t1 values ('aa');
...
...
mysql-test/r/heap.result
View file @
46d8e5fa
...
...
@@ -556,9 +556,9 @@ t1 CREATE TABLE `t1` (
`v` varchar(10) DEFAULT NULL,
`c` char(10) DEFAULT NULL,
`t` varchar(50) DEFAULT NULL,
KEY `v`
USING BTREE (`v`)
,
KEY `c`
USING BTREE (`c`)
,
KEY `t`
USING BTREE (`t`(10))
KEY `v`
(`v`) USING BTREE
,
KEY `c`
(`c`) USING BTREE
,
KEY `t`
(`t`(10)) USING BTREE
) ENGINE=MEMORY DEFAULT CHARSET=latin1
select count(*) from t1;
count(*)
...
...
mysql-test/r/ndb_index_unique.result
View file @
46d8e5fa
...
...
@@ -99,7 +99,7 @@ CREATE TABLE t2 (
a int unsigned NOT NULL PRIMARY KEY,
b int unsigned not null,
c int unsigned not null,
UNIQUE
USING HASH (b, c)
UNIQUE
(b, c) USING HASH
) engine=ndbcluster;
insert t2 values(1, 2, 3), (2, 3, 5), (3, 4, 6), (4, 5, 8), (5,6, 2), (6,7, 2);
select * from t2 where a = 3;
...
...
@@ -142,14 +142,14 @@ CREATE TABLE t2 (
a int unsigned NOT NULL PRIMARY KEY,
b int unsigned not null,
c int unsigned,
UNIQUE
USING HASH (b, c)
UNIQUE
(b, c) USING HASH
) engine=ndbcluster;
ERROR 42000: Column 'c' is used with UNIQUE or INDEX but is not defined as NOT NULL
CREATE TABLE t3 (
a int unsigned NOT NULL,
b int unsigned not null,
c int unsigned,
PRIMARY KEY
USING HASH (a, b)
PRIMARY KEY
(a, b) USING HASH
) engine=ndbcluster;
insert t3 values(1, 2, 3), (2, 3, 5), (3, 4, 6), (4, 5, 8), (5,6, 2), (6,7, 2);
select * from t3 where a = 3;
...
...
mysql-test/r/ndb_partition_key.result
View file @
46d8e5fa
...
...
@@ -40,7 +40,7 @@ a b c
1 12 3
DROP TABLE t1;
CREATE TABLE t1 (a INT, b CHAR(10) COLLATE latin1_bin, c INT, d INT,
PRIMARY KEY
USING HASH (a,b,c)
)
PRIMARY KEY
(a,b,c) USING HASH
)
ENGINE=NDB
DEFAULT CHARSET=latin1
PARTITION BY KEY (b);
...
...
@@ -77,7 +77,7 @@ t1 CREATE TABLE `t1` (
`b` char(10) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '',
`c` int(11) NOT NULL DEFAULT '0',
`d` int(11) DEFAULT NULL,
PRIMARY KEY
USING HASH (`a`,`b`,`c`)
PRIMARY KEY
(`a`,`b`,`c`) USING HASH
) ENGINE=ndbcluster DEFAULT CHARSET=latin1 PARTITION BY KEY (b)
DROP TABLE t1;
CREATE TABLE t1 (a int not null primary key)
...
...
mysql-test/r/show_check.result
View file @
46d8e5fa
...
...
@@ -460,7 +460,7 @@ SHOW CREATE TABLE t1;
Table Create Table
t1 CREATE TABLE `t1` (
`i` int(11) DEFAULT NULL,
KEY `i`
USING HASH (`i`)
KEY `i`
(`i`) USING HASH
) ENGINE=MEMORY DEFAULT CHARSET=latin1
DROP TABLE t1;
CREATE TABLE t1 (i int, KEY USING BTREE (i)) ENGINE=MEMORY;
...
...
@@ -468,7 +468,7 @@ SHOW CREATE TABLE t1;
Table Create Table
t1 CREATE TABLE `t1` (
`i` int(11) DEFAULT NULL,
KEY `i`
USING BTREE (`i`)
KEY `i`
(`i`) USING BTREE
) ENGINE=MEMORY DEFAULT CHARSET=latin1
DROP TABLE t1;
CREATE TABLE t1 (i int, KEY (i)) ENGINE=MyISAM;
...
...
@@ -484,7 +484,7 @@ SHOW CREATE TABLE t1;
Table Create Table
t1 CREATE TABLE `t1` (
`i` int(11) DEFAULT NULL,
KEY `i`
USING BTREE (`i`)
KEY `i`
(`i`) USING BTREE
) ENGINE=MyISAM DEFAULT CHARSET=latin1
DROP TABLE t1;
CREATE TABLE t1 (i int, KEY (i)) ENGINE=MyISAM;
...
...
@@ -507,14 +507,14 @@ SHOW CREATE TABLE t1;
Table Create Table
t1 CREATE TABLE `t1` (
`i` int(11) DEFAULT NULL,
KEY `i`
USING BTREE (`i`)
KEY `i`
(`i`) USING BTREE
) ENGINE=MyISAM DEFAULT CHARSET=latin1
ALTER TABLE t1 ENGINE=MEMORY;
SHOW CREATE TABLE t1;
Table Create Table
t1 CREATE TABLE `t1` (
`i` int(11) DEFAULT NULL,
KEY `i`
USING BTREE (`i`)
KEY `i`
(`i`) USING BTREE
) ENGINE=MEMORY DEFAULT CHARSET=latin1
DROP TABLE t1;
CREATE TABLE t1(
...
...
@@ -549,8 +549,8 @@ Table Create Table
t1 CREATE TABLE `t1` (
`c1` int(11) NOT NULL,
`c2` int(11) NOT NULL,
PRIMARY KEY
USING HASH (`c1`)
,
KEY `c2`
USING BTREE (`c2`)
PRIMARY KEY
(`c1`) USING HASH
,
KEY `c2`
(`c2`) USING BTREE
) ENGINE=MyISAM DEFAULT CHARSET=latin1
DROP TABLE t1;
flush tables;
...
...
mysql-test/r/sql_mode.result
View file @
46d8e5fa
...
...
@@ -18,7 +18,7 @@ t1 CREATE TABLE `t1` (
`pseudo` varchar(35) CHARACTER SET latin2 NOT NULL DEFAULT '',
`email` varchar(60) CHARACTER SET latin2 NOT NULL DEFAULT '',
PRIMARY KEY (`a`),
UNIQUE KEY `email`
USING BTREE (`email`)
UNIQUE KEY `email`
(`email`) USING BTREE
) ENGINE=MEMORY DEFAULT CHARSET=latin1 ROW_FORMAT=DYNAMIC
set @@sql_mode="ansi_quotes";
show variables like 'sql_mode';
...
...
@@ -31,7 +31,7 @@ t1 CREATE TABLE "t1" (
"pseudo" varchar(35) CHARACTER SET latin2 NOT NULL DEFAULT '',
"email" varchar(60) CHARACTER SET latin2 NOT NULL DEFAULT '',
PRIMARY KEY ("a"),
UNIQUE KEY "email"
USING BTREE ("email")
UNIQUE KEY "email"
("email") USING BTREE
) ENGINE=MEMORY DEFAULT CHARSET=latin1 ROW_FORMAT=DYNAMIC
set @@sql_mode="no_table_options";
show variables like 'sql_mode';
...
...
@@ -44,7 +44,7 @@ t1 CREATE TABLE `t1` (
`pseudo` varchar(35) CHARACTER SET latin2 NOT NULL DEFAULT '',
`email` varchar(60) CHARACTER SET latin2 NOT NULL DEFAULT '',
PRIMARY KEY (`a`),
UNIQUE KEY `email`
USING BTREE (`email`)
UNIQUE KEY `email`
(`email`) USING BTREE
)
set @@sql_mode="no_key_options";
show variables like 'sql_mode';
...
...
mysql-test/t/ndb_index_unique.test
View file @
46d8e5fa
...
...
@@ -72,7 +72,7 @@ CREATE TABLE t2 (
a
int
unsigned
NOT
NULL
PRIMARY
KEY
,
b
int
unsigned
not
null
,
c
int
unsigned
not
null
,
UNIQUE
USING
HASH
(
b
,
c
)
UNIQUE
(
b
,
c
)
USING
HASH
)
engine
=
ndbcluster
;
insert
t2
values
(
1
,
2
,
3
),
(
2
,
3
,
5
),
(
3
,
4
,
6
),
(
4
,
5
,
8
),
(
5
,
6
,
2
),
(
6
,
7
,
2
);
...
...
@@ -96,7 +96,7 @@ CREATE TABLE t2 (
a
int
unsigned
NOT
NULL
PRIMARY
KEY
,
b
int
unsigned
not
null
,
c
int
unsigned
,
UNIQUE
USING
HASH
(
b
,
c
)
UNIQUE
(
b
,
c
)
USING
HASH
)
engine
=
ndbcluster
;
#
...
...
@@ -107,7 +107,7 @@ CREATE TABLE t3 (
a
int
unsigned
NOT
NULL
,
b
int
unsigned
not
null
,
c
int
unsigned
,
PRIMARY
KEY
USING
HASH
(
a
,
b
)
PRIMARY
KEY
(
a
,
b
)
USING
HASH
)
engine
=
ndbcluster
;
insert
t3
values
(
1
,
2
,
3
),
(
2
,
3
,
5
),
(
3
,
4
,
6
),
(
4
,
5
,
8
),
(
5
,
6
,
2
),
(
6
,
7
,
2
);
...
...
mysql-test/t/ndb_partition_key.test
View file @
46d8e5fa
...
...
@@ -45,7 +45,7 @@ DROP TABLE t1;
#
CREATE
TABLE
t1
(
a
INT
,
b
CHAR
(
10
)
COLLATE
latin1_bin
,
c
INT
,
d
INT
,
PRIMARY
KEY
USING
HASH
(
a
,
b
,
c
)
)
PRIMARY
KEY
(
a
,
b
,
c
)
USING
HASH
)
ENGINE
=
NDB
DEFAULT
CHARSET
=
latin1
PARTITION
BY
KEY
(
b
);
...
...
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