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
d1539fb3
Commit
d1539fb3
authored
Feb 21, 2005
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge bk-internal:/home/bk/mysql-5.0
into mysql.com:/home/mysqldev/tulin/mysql-5.0
parents
bc8bdd5b
dfa8edc5
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
8 additions
and
7 deletions
+8
-7
mysql-test/r/innodb.result
mysql-test/r/innodb.result
+2
-0
mysql-test/r/type_bit.result
mysql-test/r/type_bit.result
+0
-2
mysql-test/t/innodb.test
mysql-test/t/innodb.test
+4
-0
mysql-test/t/type_bit.test
mysql-test/t/type_bit.test
+0
-3
ndb/src/kernel/blocks/dbdict/Dbdict.cpp
ndb/src/kernel/blocks/dbdict/Dbdict.cpp
+2
-2
No files found.
mysql-test/r/innodb.result
View file @
d1539fb3
...
...
@@ -1798,3 +1798,5 @@ Variable_name Value
innodb_thread_sleep_delay 10000
create table t1 (v varchar(16384)) engine=innodb;
ERROR 42000: Column length too big for column 'v' (max = 255); use BLOB instead
create table t1 (a bit, key(a)) engine=innodb;
ERROR 42000: The storage engine for the table doesn't support BIT FIELD
mysql-test/r/type_bit.result
View file @
d1539fb3
...
...
@@ -44,8 +44,6 @@ t1 CREATE TABLE `t1` (
`a` bit(1) default NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1
drop table t1;
create table t1 (a bit, key(a)) engine=innodb;
ERROR 42000: The storage engine for the table doesn't support BIT FIELD
create table t1 (a bit(64));
insert into t1 values
(b'1111111111111111111111111111111111111111111111111111111111111111'),
...
...
mysql-test/t/innodb.test
View file @
d1539fb3
...
...
@@ -1278,3 +1278,7 @@ show variables like "innodb_thread_sleep_delay";
# InnoDB specific varchar tests
--
error
1074
create
table
t1
(
v
varchar
(
16384
))
engine
=
innodb
;
# The following should be moved to type_bit.test when innodb will support it
--
error
1178
create
table
t1
(
a
bit
,
key
(
a
))
engine
=
innodb
;
mysql-test/t/type_bit.test
View file @
d1539fb3
...
...
@@ -26,9 +26,6 @@ create table t1 (a bit(0));
show
create
table
t1
;
drop
table
t1
;
--
error
1178
create
table
t1
(
a
bit
,
key
(
a
))
engine
=
innodb
;
create
table
t1
(
a
bit
(
64
));
insert
into
t1
values
(
b
'1111111111111111111111111111111111111111111111111111111111111111'
),
...
...
ndb/src/kernel/blocks/dbdict/Dbdict.cpp
View file @
d1539fb3
...
...
@@ -2245,9 +2245,9 @@ void Dbdict::checkSchemaStatus(Signal* signal)
restartCreateTab
(
signal
,
tableId
,
oldEntry
,
false
);
return
;
}
//if
ndbrequire
(
ok
);
break
;
}
ndbrequire
(
ok
);
break
;
}
case
SchemaFile
:
:
DROP_TABLE_STARTED
:
jam
();
...
...
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