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
f7415666
Commit
f7415666
authored
Jul 12, 2005
by
mskold@mysql.com
Browse files
Options
Browse Files
Download
Plain Diff
Merge mysql.com:/usr/local/home/marty/MySQL/mysql-4.1
into mysql.com:/usr/local/home/marty/MySQL/mysql-5.0
parents
2204effd
d71548c8
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
15 additions
and
32 deletions
+15
-32
include/my_global.h
include/my_global.h
+1
-4
mysql-test/r/ndb_autodiscover.result
mysql-test/r/ndb_autodiscover.result
+0
-15
mysql-test/t/ndb_autodiscover.test
mysql-test/t/ndb_autodiscover.test
+14
-13
No files found.
include/my_global.h
View file @
f7415666
...
@@ -396,10 +396,7 @@ int __void__;
...
@@ -396,10 +396,7 @@ int __void__;
#endif
#endif
/* Define some useful general macros */
/* Define some useful general macros */
#if defined(__cplusplus) && defined(__GNUC__)
#if !defined(max)
#define max(a, b) ((a) >? (b))
#define min(a, b) ((a) <? (b))
#elif !defined(max)
#define max(a, b) ((a) > (b) ? (a) : (b))
#define max(a, b) ((a) > (b) ? (a) : (b))
#define min(a, b) ((a) < (b) ? (a) : (b))
#define min(a, b) ((a) < (b) ? (a) : (b))
#endif
#endif
...
...
mysql-test/r/ndb_autodiscover.result
View file @
f7415666
...
@@ -372,7 +372,6 @@ drop table t1;
...
@@ -372,7 +372,6 @@ drop table t1;
use test2;
use test2;
drop table t2;
drop table t2;
drop database test2;
drop database test2;
use test;
drop database if exists test_only_ndb_tables;
drop database if exists test_only_ndb_tables;
create database test_only_ndb_tables;
create database test_only_ndb_tables;
use test_only_ndb_tables;
use test_only_ndb_tables;
...
@@ -383,20 +382,6 @@ select * from t1;
...
@@ -383,20 +382,6 @@ select * from t1;
ERROR HY000: Can't lock file (errno: 4009)
ERROR HY000: Can't lock file (errno: 4009)
use test;
use test;
drop database test_only_ndb_tables;
drop database test_only_ndb_tables;
CREATE TABLE sys.SYSTAB_0 (a int);
ERROR 42S01: Table 'SYSTAB_0' already exists
select * from sys.SYSTAB_0;
ERROR HY000: Failed to open 'SYSTAB_0', error while unpacking from engine
CREATE TABLE IF NOT EXISTS sys.SYSTAB_0 (a int);
show warnings;
Level Code Message
select * from sys.SYSTAB_0;
ERROR HY000: Failed to open 'SYSTAB_0', error while unpacking from engine
drop table sys.SYSTAB_0;
ERROR 42S02: Unknown table 'SYSTAB_0'
drop table IF EXISTS sys.SYSTAB_0;
Warnings:
Note 1051 Unknown table 'SYSTAB_0'
CREATE TABLE t9 (
CREATE TABLE t9 (
a int NOT NULL PRIMARY KEY,
a int NOT NULL PRIMARY KEY,
b int
b int
...
...
mysql-test/t/ndb_autodiscover.test
View file @
f7415666
...
@@ -501,19 +501,20 @@ drop database test_only_ndb_tables;
...
@@ -501,19 +501,20 @@ drop database test_only_ndb_tables;
# a table with tha same name as a table that can't be
# a table with tha same name as a table that can't be
# discovered( for example a table created via NDBAPI)
# discovered( for example a table created via NDBAPI)
--
error
1050
# Test disabled since it doesn't work on case insensitive systems
CREATE
TABLE
sys
.
SYSTAB_0
(
a
int
);
#--error 1050
--
error
1105
#CREATE TABLE sys.SYSTAB_0 (a int);
select
*
from
sys
.
SYSTAB_0
;
#--error 1105
#select * from sys.SYSTAB_0;
CREATE
TABLE
IF
NOT
EXISTS
sys
.
SYSTAB_0
(
a
int
);
show
warnings
;
#CREATE TABLE IF NOT EXISTS sys.SYSTAB_0 (a int);
--
error
1105
#show warnings;
select
*
from
sys
.
SYSTAB_0
;
#--error 1105
#select * from sys.SYSTAB_0;
--
error
1051
drop
table
sys
.
SYSTAB_0
;
#--error 1051
drop
table
IF
EXISTS
sys
.
SYSTAB_0
;
#drop table sys.SYSTAB_0;
#drop table IF EXISTS sys.SYSTAB_0;
######################################################
######################################################
# Note! This should always be the last step in this
# Note! This should always be the last step in this
...
...
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