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
9f686a4c
Commit
9f686a4c
authored
Oct 18, 2006
by
mskold/marty@mysql.com/linux.site
Browse files
Options
Browse Files
Download
Plain Diff
Merge mysql.com:/windows/Linux_space/MySQL/mysql-4.1
into mysql.com:/windows/Linux_space/MySQL/mysql-4.1-ndb
parents
d9c51c61
c854eceb
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
105 additions
and
19 deletions
+105
-19
mysql-test/r/ndb_charset.result
mysql-test/r/ndb_charset.result
+2
-2
mysql-test/r/ndb_index_unique.result
mysql-test/r/ndb_index_unique.result
+5
-5
mysql-test/r/ndb_multi.result
mysql-test/r/ndb_multi.result
+32
-0
mysql-test/r/ndb_update.result
mysql-test/r/ndb_update.result
+1
-1
mysql-test/t/ndb_multi.test
mysql-test/t/ndb_multi.test
+22
-0
sql/ha_ndbcluster.cc
sql/ha_ndbcluster.cc
+28
-6
sql/handler.cc
sql/handler.cc
+15
-5
No files found.
mysql-test/r/ndb_charset.result
View file @
9f686a4c
...
@@ -78,9 +78,9 @@ unique key(a)
...
@@ -78,9 +78,9 @@ unique key(a)
) engine=ndb;
) engine=ndb;
insert into t1 values(1, 'aAa');
insert into t1 values(1, 'aAa');
insert into t1 values(2, 'aaa');
insert into t1 values(2, 'aaa');
ERROR 23000: Duplicate entry '
2' for key 1
ERROR 23000: Duplicate entry '
' for key 0
insert into t1 values(3, 'AAA');
insert into t1 values(3, 'AAA');
ERROR 23000: Duplicate entry '
3' for key 1
ERROR 23000: Duplicate entry '
' for key 0
select * from t1 order by p;
select * from t1 order by p;
p a
p a
1 aAa
1 aAa
...
...
mysql-test/r/ndb_index_unique.result
View file @
9f686a4c
...
@@ -22,7 +22,7 @@ select * from t1 where b = 4 order by a;
...
@@ -22,7 +22,7 @@ select * from t1 where b = 4 order by a;
a b c
a b c
3 4 6
3 4 6
insert into t1 values(8, 2, 3);
insert into t1 values(8, 2, 3);
ERROR 23000: Duplicate entry '
8' for key 1
ERROR 23000: Duplicate entry '
' for key 0
select * from t1 order by a;
select * from t1 order by a;
a b c
a b c
1 2 3
1 2 3
...
@@ -89,7 +89,7 @@ a b c
...
@@ -89,7 +89,7 @@ a b c
1 1 1
1 1 1
4 4 NULL
4 4 NULL
insert into t1 values(5,1,1);
insert into t1 values(5,1,1);
ERROR 23000: Duplicate entry '
5' for key 1
ERROR 23000: Duplicate entry '
' for key 0
drop table t1;
drop table t1;
CREATE TABLE t2 (
CREATE TABLE t2 (
a int unsigned NOT NULL PRIMARY KEY,
a int unsigned NOT NULL PRIMARY KEY,
...
@@ -112,7 +112,7 @@ select * from t2 where b = 4 order by a;
...
@@ -112,7 +112,7 @@ select * from t2 where b = 4 order by a;
a b c
a b c
3 4 6
3 4 6
insert into t2 values(8, 2, 3);
insert into t2 values(8, 2, 3);
ERROR 23000: Duplicate entry '
8' for key 1
ERROR 23000: Duplicate entry '
' for key 0
select * from t2 order by a;
select * from t2 order by a;
a b c
a b c
1 2 3
1 2 3
...
@@ -177,7 +177,7 @@ pk a
...
@@ -177,7 +177,7 @@ pk a
3 NULL
3 NULL
4 4
4 4
insert into t1 values (5,0);
insert into t1 values (5,0);
ERROR 23000: Duplicate entry '
5' for key 1
ERROR 23000: Duplicate entry '
' for key 0
select * from t1 order by pk;
select * from t1 order by pk;
pk a
pk a
-1 NULL
-1 NULL
...
@@ -210,7 +210,7 @@ pk a b c
...
@@ -210,7 +210,7 @@ pk a b c
0 NULL 18 NULL
0 NULL 18 NULL
1 3 19 abc
1 3 19 abc
insert into t2 values(2,3,19,'abc');
insert into t2 values(2,3,19,'abc');
ERROR 23000: Duplicate entry '
2' for key 1
ERROR 23000: Duplicate entry '
' for key 0
select * from t2 order by pk;
select * from t2 order by pk;
pk a b c
pk a b c
-1 1 17 NULL
-1 1 17 NULL
...
...
mysql-test/r/ndb_multi.result
View file @
9f686a4c
...
@@ -69,3 +69,35 @@ t3
...
@@ -69,3 +69,35 @@ t3
t4
t4
drop table t1, t2, t3, t4;
drop table t1, t2, t3, t4;
drop table t1, t3, t4;
drop table t1, t3, t4;
create table t1(c1 int key)ENGINE=MyISAM;
insert into t1 values(1),(3),(5);
select * from t1 order by c1;
c1
1
3
5
create table t1(c1 int key)ENGINE=MyISAM;
insert into t1 values(100),(344),(533);
select * from t1 order by c1;
c1
100
344
533
alter table t1 engine=ndb;
show tables;
Tables_in_test
t1
Warnings:
Warning 1050 Local table test.t1 shadows ndb table
select * from t1 order by c1;
c1
100
344
533
drop table t1;
select * from t1 order by c1;
c1
1
3
5
drop table t1;
mysql-test/r/ndb_update.result
View file @
9f686a4c
...
@@ -18,7 +18,7 @@ pk1 b c
...
@@ -18,7 +18,7 @@ pk1 b c
2 2 2
2 2 2
4 1 1
4 1 1
UPDATE t1 set pk1 = 1, c = 2 where pk1 = 4;
UPDATE t1 set pk1 = 1, c = 2 where pk1 = 4;
ERROR 23000: Duplicate entry '
1' for key 1
ERROR 23000: Duplicate entry '
' for key 0
select * from t1 order by pk1;
select * from t1 order by pk1;
pk1 b c
pk1 b c
0 0 0
0 0 0
...
...
mysql-test/t/ndb_multi.test
View file @
9f686a4c
...
@@ -69,4 +69,26 @@ drop table t1, t2, t3, t4;
...
@@ -69,4 +69,26 @@ drop table t1, t2, t3, t4;
connection
server2
;
connection
server2
;
drop
table
t1
,
t3
,
t4
;
drop
table
t1
,
t3
,
t4
;
# bug#21378
connection
server1
;
create
table
t1
(
c1
int
key
)
ENGINE
=
MyISAM
;
insert
into
t1
values
(
1
),(
3
),(
5
);
select
*
from
t1
order
by
c1
;
connection
server2
;
create
table
t1
(
c1
int
key
)
ENGINE
=
MyISAM
;
insert
into
t1
values
(
100
),(
344
),(
533
);
select
*
from
t1
order
by
c1
;
connection
server1
;
alter
table
t1
engine
=
ndb
;
connection
server2
;
show
tables
;
select
*
from
t1
order
by
c1
;
drop
table
t1
;
connection
server1
;
select
*
from
t1
order
by
c1
;
drop
table
t1
;
# End of 4.1 tests
# End of 4.1 tests
sql/ha_ndbcluster.cc
View file @
9f686a4c
...
@@ -454,7 +454,14 @@ int ha_ndbcluster::ndb_err(NdbConnection *trans)
...
@@ -454,7 +454,14 @@ int ha_ndbcluster::ndb_err(NdbConnection *trans)
if
(
res
==
HA_ERR_FOUND_DUPP_KEY
)
if
(
res
==
HA_ERR_FOUND_DUPP_KEY
)
{
{
if
(
m_rows_to_insert
==
1
)
if
(
m_rows_to_insert
==
1
)
m_dupkey
=
table
->
primary_key
;
{
/*
We can only distinguish between primary and non-primary
violations here, so we need to return MAX_KEY for non-primary
to signal that key is unknown
*/
m_dupkey
=
err
.
code
==
630
?
table
->
primary_key
:
MAX_KEY
;
}
else
else
{
{
/* We are batching inserts, offending key is not available */
/* We are batching inserts, offending key is not available */
...
@@ -4715,16 +4722,15 @@ int ndbcluster_find_files(THD *thd,const char *db,const char *path,
...
@@ -4715,16 +4722,15 @@ int ndbcluster_find_files(THD *thd,const char *db,const char *path,
List
<
char
>
delete_list
;
List
<
char
>
delete_list
;
while
((
file_name
=
it
++
))
while
((
file_name
=
it
++
))
{
{
bool
file_on_disk
=
false
;
DBUG_PRINT
(
"info"
,
(
"%s"
,
file_name
));
DBUG_PRINT
(
"info"
,
(
"%s"
,
file_name
));
if
(
hash_search
(
&
ndb_tables
,
file_name
,
strlen
(
file_name
)))
if
(
hash_search
(
&
ndb_tables
,
file_name
,
strlen
(
file_name
)))
{
{
DBUG_PRINT
(
"info"
,
(
"%s existed in NDB _and_ on disk "
,
file_name
));
DBUG_PRINT
(
"info"
,
(
"%s existed in NDB _and_ on disk "
,
file_name
));
// File existed in NDB and as frm file, put in ok_tables list
file_on_disk
=
true
;
my_hash_insert
(
&
ok_tables
,
(
byte
*
)
file_name
);
continue
;
}
}
//
File is not in NDB, c
heck for .ndb file with this name
//
C
heck for .ndb file with this name
(
void
)
strxnmov
(
name
,
FN_REFLEN
,
(
void
)
strxnmov
(
name
,
FN_REFLEN
,
mysql_data_home
,
"/"
,
db
,
"/"
,
file_name
,
ha_ndb_ext
,
NullS
);
mysql_data_home
,
"/"
,
db
,
"/"
,
file_name
,
ha_ndb_ext
,
NullS
);
DBUG_PRINT
(
"info"
,
(
"Check access for %s"
,
name
));
DBUG_PRINT
(
"info"
,
(
"Check access for %s"
,
name
));
...
@@ -4732,9 +4738,25 @@ int ndbcluster_find_files(THD *thd,const char *db,const char *path,
...
@@ -4732,9 +4738,25 @@ int ndbcluster_find_files(THD *thd,const char *db,const char *path,
{
{
DBUG_PRINT
(
"info"
,
(
"%s did not exist on disk"
,
name
));
DBUG_PRINT
(
"info"
,
(
"%s did not exist on disk"
,
name
));
// .ndb file did not exist on disk, another table type
// .ndb file did not exist on disk, another table type
if
(
file_on_disk
)
{
// Ignore this ndb table
gptr
record
=
hash_search
(
&
ndb_tables
,
file_name
,
strlen
(
file_name
));
DBUG_ASSERT
(
record
);
hash_delete
(
&
ndb_tables
,
record
);
push_warning_printf
(
current_thd
,
MYSQL_ERROR
::
WARN_LEVEL_WARN
,
ER_TABLE_EXISTS_ERROR
,
"Local table %s.%s shadows ndb table"
,
db
,
file_name
);
}
continue
;
}
if
(
file_on_disk
)
{
// File existed in NDB and as frm file, put in ok_tables list
my_hash_insert
(
&
ok_tables
,
(
byte
*
)
file_name
);
continue
;
continue
;
}
}
DBUG_PRINT
(
"info"
,
(
"%s existed on disk"
,
name
));
DBUG_PRINT
(
"info"
,
(
"%s existed on disk"
,
name
));
// The .ndb file exists on disk, but it's not in list of tables in ndb
// The .ndb file exists on disk, but it's not in list of tables in ndb
// Verify that handler agrees table is gone.
// Verify that handler agrees table is gone.
...
...
sql/handler.cc
View file @
9f686a4c
...
@@ -1102,12 +1102,22 @@ void handler::print_error(int error, myf errflag)
...
@@ -1102,12 +1102,22 @@ void handler::print_error(int error, myf errflag)
/* Write the dupplicated key in the error message */
/* Write the dupplicated key in the error message */
char
key
[
MAX_KEY_LENGTH
];
char
key
[
MAX_KEY_LENGTH
];
String
str
(
key
,
sizeof
(
key
),
system_charset_info
);
String
str
(
key
,
sizeof
(
key
),
system_charset_info
);
key_unpack
(
&
str
,
table
,(
uint
)
key_nr
);
uint
max_length
=
MYSQL_ERRMSG_SIZE
-
(
uint
)
strlen
(
ER
(
ER_DUP_ENTRY
));
if
(
key_nr
==
MAX_KEY
)
if
(
str
.
length
()
>=
max_length
)
{
/* Key is unknown */
str
.
length
(
0
);
key_nr
=
-
1
;
}
else
{
{
str
.
length
(
max_length
-
4
);
key_unpack
(
&
str
,
table
,(
uint
)
key_nr
);
str
.
append
(
"..."
);
uint
max_length
=
MYSQL_ERRMSG_SIZE
-
(
uint
)
strlen
(
ER
(
ER_DUP_ENTRY
));
if
(
str
.
length
()
>=
max_length
)
{
str
.
length
(
max_length
-
4
);
str
.
append
(
"..."
);
}
}
}
my_error
(
ER_DUP_ENTRY
,
MYF
(
0
),
str
.
c_ptr
(),
key_nr
+
1
);
my_error
(
ER_DUP_ENTRY
,
MYF
(
0
),
str
.
c_ptr
(),
key_nr
+
1
);
DBUG_VOID_RETURN
;
DBUG_VOID_RETURN
;
...
...
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