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
01872c23
Commit
01872c23
authored
Feb 14, 2005
by
heikki@hundin.mysql.fi
Browse files
Options
Browse Files
Download
Plain Diff
Merge heikki@bk-internal.mysql.com:/home/bk/mysql-5.0
into hundin.mysql.fi:/home/heikki/mysql-5.0
parents
67392525
29510ce0
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
mysql-test/r/lowercase_table3.result
mysql-test/r/lowercase_table3.result
+1
-1
mysql-test/t/lowercase_table3.test
mysql-test/t/lowercase_table3.test
+1
-1
sql/ha_innodb.cc
sql/ha_innodb.cc
+2
-2
No files found.
mysql-test/r/lowercase_table3.result
View file @
01872c23
...
@@ -6,5 +6,5 @@ drop table t1;
...
@@ -6,5 +6,5 @@ drop table t1;
flush tables;
flush tables;
CREATE TABLE t1 (a int) ENGINE=INNODB;
CREATE TABLE t1 (a int) ENGINE=INNODB;
SELECT * from T1;
SELECT * from T1;
ERROR
HY000: Can't open file: 'T1.ibd' (errno: 1)
ERROR
42S02: Table 'test.T1' doesn't exist
drop table t1;
drop table t1;
mysql-test/t/lowercase_table3.test
View file @
01872c23
...
@@ -32,6 +32,6 @@ flush tables;
...
@@ -32,6 +32,6 @@ flush tables;
#
#
CREATE
TABLE
t1
(
a
int
)
ENGINE
=
INNODB
;
CREATE
TABLE
t1
(
a
int
)
ENGINE
=
INNODB
;
--
error
1
01
6
--
error
1
14
6
SELECT
*
from
T1
;
SELECT
*
from
T1
;
drop
table
t1
;
drop
table
t1
;
sql/ha_innodb.cc
View file @
01872c23
...
@@ -1866,7 +1866,7 @@ ha_innobase::open(
...
@@ -1866,7 +1866,7 @@ ha_innobase::open(
my_free
((
char
*
)
upd_buff
,
MYF
(
0
));
my_free
((
char
*
)
upd_buff
,
MYF
(
0
));
my_errno
=
ENOENT
;
my_errno
=
ENOENT
;
DBUG_RETURN
(
1
);
DBUG_RETURN
(
HA_ERR_NO_SUCH_TABLE
);
}
}
if
(
ib_table
->
ibd_file_missing
&&
!
thd
->
tablespace_op
)
{
if
(
ib_table
->
ibd_file_missing
&&
!
thd
->
tablespace_op
)
{
...
@@ -1883,7 +1883,7 @@ ha_innobase::open(
...
@@ -1883,7 +1883,7 @@ ha_innobase::open(
my_free
((
char
*
)
upd_buff
,
MYF
(
0
));
my_free
((
char
*
)
upd_buff
,
MYF
(
0
));
my_errno
=
ENOENT
;
my_errno
=
ENOENT
;
DBUG_RETURN
(
1
);
DBUG_RETURN
(
HA_ERR_NO_SUCH_TABLE
);
}
}
innobase_prebuilt
=
row_create_prebuilt
(
ib_table
);
innobase_prebuilt
=
row_create_prebuilt
(
ib_table
);
...
...
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