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
8d87ef99
Commit
8d87ef99
authored
Jan 20, 2005
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge mysql.com:/home/jonas/src/mysql-5.0
into mysql.com:/home/jonas/src/mysql-5.0-ndb
parents
8656484b
aec3e0c7
Changes
17
Hide whitespace changes
Inline
Side-by-side
Showing
17 changed files
with
79 additions
and
78 deletions
+79
-78
BUILD/SETUP.sh
BUILD/SETUP.sh
+8
-0
BUILD/compile-amd64-debug-max
BUILD/compile-amd64-debug-max
+2
-8
BUILD/compile-amd64-max
BUILD/compile-amd64-max
+2
-11
BUILD/compile-pentium-debug-max
BUILD/compile-pentium-debug-max
+2
-4
BUILD/compile-pentium-debug-max-no-embedded
BUILD/compile-pentium-debug-max-no-embedded
+2
-4
BUILD/compile-pentium-max
BUILD/compile-pentium-max
+2
-7
BUILD/compile-pentium-valgrind-max
BUILD/compile-pentium-valgrind-max
+2
-2
BUILD/compile-ppc-debug-max
BUILD/compile-ppc-debug-max
+2
-4
BUILD/compile-ppc-max
BUILD/compile-ppc-max
+2
-6
libmysqld/Makefile.am
libmysqld/Makefile.am
+1
-1
mysql-test/r/join_outer.result
mysql-test/r/join_outer.result
+14
-14
mysql-test/r/subselect.result
mysql-test/r/subselect.result
+8
-0
mysql-test/t/join_outer.test
mysql-test/t/join_outer.test
+14
-14
mysql-test/t/subselect.test
mysql-test/t/subselect.test
+11
-0
scripts/make_binary_distribution.sh
scripts/make_binary_distribution.sh
+4
-2
sql/item_cmpfunc.h
sql/item_cmpfunc.h
+1
-0
sql/item_subselect.cc
sql/item_subselect.cc
+2
-1
No files found.
BUILD/SETUP.sh
View file @
8d87ef99
...
...
@@ -43,7 +43,13 @@ global_warnings="-Wimplicit -Wreturn-type -Wswitch -Wtrigraphs -Wcomment -W -Wch
c_warnings
=
"
$global_warnings
-Wunused"
cxx_warnings
=
"
$global_warnings
-Woverloaded-virtual -Wsign-promo -Wreorder -Wctor-dtor-privacy -Wnon-virtual-dtor"
base_max_configs
=
"--with-innodb --with-bdb --with-ndbcluster --with-archive-storage-engine --with-raid --with-openssl --with-raid --with-vio"
max_leave_isam_configs
=
"--with-innodb --with-bdb --with-ndbcluster --with-archive-storage-engine --with-federated-storage-engine --with-raid --with-openssl --with-raid --with-vio --with-embedded-server"
max_no_es_configs
=
"
$max_leave_isam_configs
--without-isam"
max_configs
=
"
$max_no_es_configs
--with-embedded-server"
alpha_cflags
=
"-mcpu=ev6 -Wa,-mev6"
# Not used yet
amd64_cflags
=
"-DBIG_TABLES"
pentium_cflags
=
"-mcpu=pentiumpro"
pentium64_cflags
=
"-mcpu=nocona -m64"
ppc_cflags
=
"-mpowerpc -mcpu=powerpc"
...
...
@@ -58,9 +64,11 @@ reckless_cflags="-O3 -fomit-frame-pointer "
debug_cflags
=
"-DUNIV_MUST_NOT_INLINE -DEXTRA_DEBUG -DFORCE_INIT_OF_VARS -DSAFEMALLOC -DPEDANTIC_SAFEMALLOC -DSAFE_MUTEX"
base_cxxflags
=
"-felide-constructors -fno-exceptions -fno-rtti"
amd64_cxxflags
=
"-DBIG_TABLES"
base_configs
=
"--prefix=/usr/local/mysql --enable-assembler --with-extra-charsets=complex --enable-thread-safe-client --with-readline"
static_link
=
"--with-mysqld-ldflags=-all-static --with-client-ldflags=-all-static"
amd64_configs
=
""
alpha_configs
=
""
# Not used yet
pentium_configs
=
""
sparc_configs
=
""
...
...
BUILD/compile-amd64-debug-max
View file @
8d87ef99
#! /bin/sh
path
=
`
dirname
$0
`
.
"
$path
/SETUP.sh"
amd64_cflags
=
"-DBIG_TABLES"
amd64_cxx_flags
=
"-DBIG_TABLES"
amd64_configs
=
""
base_cxxflags
=
"
$amd64_cxx_flags
$base_cxxflags
"
extra_flags
=
"
$amd64_cflags
$debug_cflags
"
extra_flags
=
"
$amd64_cflags
$debug_cflags
$max_cflags
"
c_warnings
=
"
$c_warnings
$debug_extra_warnings
"
cxx_warnings
=
"
$cxx_warnings
$debug_extra_warnings
"
extra_configs
=
"
$amd64_configs
$debug_configs
"
extra_configs
=
"
$extra_configs
--with-berkeley-db --with-innodb --without-isam --with-embedded-server --with-openssl --with-raid --with-vio --with-ndbcluster"
extra_configs
=
"
$amd64_configs
$debug_configs
$max_configs
"
.
"
$path
/FINISH.sh"
BUILD/compile-amd64-max
View file @
8d87ef99
...
...
@@ -2,16 +2,7 @@
path
=
`
dirname
$0
`
.
"
$path
/SETUP.sh"
amd64_cflags
=
"-DBIG_TABLES"
amd64_cxx_flags
=
"-DBIG_TABLES"
amd64_configs
=
""
base_cxxflags
=
"
$amd64_cxx_flags
$base_cxxflags
"
extra_flags
=
"
$amd64_cflags
$fast_cflags
-g"
extra_configs
=
"
$amd64_configs
"
#strip=yes
extra_configs
=
"
$extra_configs
--with-innodb --with-berkeley-db
\
--with-embedded-server --enable-thread-safe-client
\
--with-openssl --with-vio --with-raid --with-ndbcluster"
extra_flags
=
"
$amd64_cflags
$fast_cflags
$max_cflags
-g"
extra_configs
=
"
$amd64_configs
$max_configs
"
.
"
$path
/FINISH.sh"
BUILD/compile-pentium-debug-max
View file @
8d87ef99
...
...
@@ -3,11 +3,9 @@
path
=
`
dirname
$0
`
.
"
$path
/SETUP.sh"
extra_flags
=
"
$pentium_cflags
$debug_cflags
"
extra_flags
=
"
$pentium_cflags
$debug_cflags
$max_cflags
"
c_warnings
=
"
$c_warnings
$debug_extra_warnings
"
cxx_warnings
=
"
$cxx_warnings
$debug_extra_warnings
"
extra_configs
=
"
$pentium_configs
$debug_configs
"
extra_configs
=
"
$extra_configs
--with-berkeley-db --with-innodb --without-isam --with-embedded-server --with-openssl --with-raid --with-vio --with-ndbcluster"
extra_configs
=
"
$pentium_configs
$debug_configs
$max_configs
"
.
"
$path
/FINISH.sh"
BUILD/compile-pentium-debug-max-no-embedded
View file @
8d87ef99
...
...
@@ -3,11 +3,9 @@
path
=
`
dirname
$0
`
.
"
$path
/SETUP.sh"
extra_flags
=
"
$pentium_cflags
$debug_cflags
"
extra_flags
=
"
$pentium_cflags
$debug_cflags
$max_cflags
"
c_warnings
=
"
$c_warnings
$debug_extra_warnings
"
cxx_warnings
=
"
$cxx_warnings
$debug_extra_warnings
"
extra_configs
=
"
$pentium_configs
$debug_configs
"
extra_configs
=
"
$extra_configs
--with-berkeley-db --with-innodb --without-isam --with-openssl --with-raid"
extra_configs
=
"
$pentium_configs
$debug_configs
$max_no_es_configs
"
.
"
$path
/FINISH.sh"
BUILD/compile-pentium-max
View file @
8d87ef99
...
...
@@ -3,12 +3,7 @@
path
=
`
dirname
$0
`
.
"
$path
/SETUP.sh"
extra_flags
=
"
$pentium_cflags
$fast_cflags
-g"
extra_configs
=
"
$pentium_configs
"
#strip=yes
extra_configs
=
"
$extra_configs
--with-innodb --with-berkeley-db
\
--with-embedded-server --enable-thread-safe-client
\
--with-openssl --with-vio --with-raid --with-ndbcluster"
extra_flags
=
"
$pentium_cflags
$fast_cflags
$max_cflags
-g"
extra_configs
=
"
$pentium_configs
$max_configs
"
.
"
$path
/FINISH.sh"
BUILD/compile-pentium-valgrind-max
View file @
8d87ef99
...
...
@@ -3,13 +3,13 @@
path
=
`
dirname
$0
`
.
"
$path
/SETUP.sh"
extra_flags
=
"
$pentium_cflags
$debug_cflags
-USAFEMALLOC -UFORCE_INIT_OF_VARS -DHAVE_purify -DMYSQL_SERVER_SUFFIX=-valgrind-max"
extra_flags
=
"
$pentium_cflags
$debug_cflags
$max_cflags
-USAFEMALLOC -UFORCE_INIT_OF_VARS -DHAVE_purify -DMYSQL_SERVER_SUFFIX=-valgrind-max"
c_warnings
=
"
$c_warnings
$debug_extra_warnings
"
cxx_warnings
=
"
$cxx_warnings
$debug_extra_warnings
"
extra_configs
=
"
$pentium_configs
$debug_configs
"
# We want to test isam when building with valgrind
extra_configs
=
"
$extra_configs
--with-berkeley-db --with-innodb --with-isam --with-embedded-server --with-openssl --with-vio --with-raid --with-ndbcluster
"
extra_configs
=
"
$extra_configs
$max_leave_isam_configs
--with-isam
"
.
"
$path
/FINISH.sh"
...
...
BUILD/compile-ppc-debug-max
View file @
8d87ef99
...
...
@@ -3,11 +3,9 @@
path
=
`
dirname
$0
`
.
"
$path
/SETUP.sh"
extra_flags
=
"
$ppc_cflags
$debug_cflags
"
extra_flags
=
"
$ppc_cflags
$debug_cflags
$max_cflags
"
c_warnings
=
"
$c_warnings
$debug_extra_warnings
"
cxx_warnings
=
"
$cxx_warnings
$debug_extra_warnings
"
extra_configs
=
"
$debug_configs
"
extra_configs
=
"
$extra_configs
--with-berkeley-db --with-innodb --without-isam --with-embedded-server --with-openssl --with-raid --with-vio --with-ndbcluster"
extra_configs
=
"
$debug_configs
$max_configs
"
.
"
$path
/FINISH.sh"
BUILD/compile-ppc-max
View file @
8d87ef99
...
...
@@ -3,11 +3,7 @@
path
=
`
dirname
$0
`
.
"
$path
/SETUP.sh"
extra_flags
=
"
$ppc_cflags
$fast_cflags
-g"
#strip=yes
extra_configs
=
"
$extra_configs
--with-innodb --with-berkeley-db
\
--with-embedded-server --enable-thread-safe-client
\
--with-openssl --with-vio --with-raid --with-ndbcluster"
extra_flags
=
"
$ppc_cflags
$fast_cflags
$max_cflags
-g"
extra_configs
=
"
$extra_configs
$max_configs
"
.
"
$path
/FINISH.sh"
libmysqld/Makefile.am
View file @
8d87ef99
...
...
@@ -42,7 +42,7 @@ sqlexamplessources = ha_example.cc ha_archive.cc ha_tina.cc
noinst_HEADERS
=
embedded_priv.h emb_qcache.h
sqlsources
=
derror.cc field.cc field_conv.cc strfunc.cc filesort.cc
\
ha_innodb.cc ha_berkeley.cc ha_heap.cc
\
ha_innodb.cc ha_berkeley.cc ha_heap.cc
ha_federated.cc
\
ha_myisam.cc ha_myisammrg.cc handler.cc sql_handler.cc
\
hostname.cc init.cc password.c
\
item.cc item_buff.cc item_cmpfunc.cc item_create.cc
\
...
...
mysql-test/r/join_outer.result
View file @
8d87ef99
...
...
@@ -784,32 +784,32 @@ t2.flag_value IS NULL;
flag_name flag_value
flag2 NULL
DROP TABLE t1,t2;
CREATE TABLE
invoice
(
CREATE TABLE
t1
(
id int(11) unsigned NOT NULL auto_increment,
text_id int(10) unsigned default NULL,
PRIMARY KEY (id)
);
INSERT INTO
invoice
VALUES("1", "0");
INSERT INTO
invoice
VALUES("2", "10");
CREATE TABLE t
ext_table
(
INSERT INTO
t1
VALUES("1", "0");
INSERT INTO
t1
VALUES("2", "10");
CREATE TABLE t
2
(
text_id char(3) NOT NULL default '',
language_id char(3) NOT NULL default '',
text_data text,
PRIMARY KEY (text_id,language_id)
);
INSERT INTO t
ext_table
VALUES("0", "EN", "0-EN");
INSERT INTO t
ext_table
VALUES("0", "SV", "0-SV");
INSERT INTO t
ext_table
VALUES("10", "EN", "10-EN");
INSERT INTO t
ext_table
VALUES("10", "SV", "10-SV");
SELECT
invoice.id, invoice.text_id, text_table
.text_data
FROM
invoice LEFT JOIN text_table
ON
invoice.text_id = text_table
.text_id
AND t
ext_table
.language_id = 'SV'
WHERE (
invoice.id LIKE '%' OR text_table
.text_data LIKE '%');
INSERT INTO t
2
VALUES("0", "EN", "0-EN");
INSERT INTO t
2
VALUES("0", "SV", "0-SV");
INSERT INTO t
2
VALUES("10", "EN", "10-EN");
INSERT INTO t
2
VALUES("10", "SV", "10-SV");
SELECT
t1.id, t1.text_id, t2
.text_data
FROM
t1 LEFT JOIN t2
ON
t1.text_id = t2
.text_id
AND t
2
.language_id = 'SV'
WHERE (
t1.id LIKE '%' OR t2
.text_data LIKE '%');
id text_id text_data
1 0 0-SV
2 10 10-SV
DROP TABLE
invoice, text_table
;
DROP TABLE
t1, t2
;
CREATE TABLE t0 (a0 int PRIMARY KEY);
CREATE TABLE t1 (a1 int PRIMARY KEY);
CREATE TABLE t2 (a2 int);
...
...
mysql-test/r/subselect.result
View file @
8d87ef99
...
...
@@ -2160,3 +2160,11 @@ WHERE f1 <> ALL ( SELECT SUM(f1) AS sf1 FROM t2 HAVING sf1 > 10000);
f1
NULL
1
drop table t1,t2;
create table t1 (a1 int);
create table t2 (b1 int);
select * from t1 where a2 > any(select b1 from t2);
ERROR 42S22: Unknown column 'a2' in 'scalar IN/ALL/ANY subquery'
select * from t1 where a1 > any(select b1 from t2);
a1
drop table t1,t2;
mysql-test/t/join_outer.test
View file @
8d87ef99
...
...
@@ -554,34 +554,34 @@ SELECT t1.flag_name,t2.flag_value
DROP
TABLE
t1
,
t2
;
CREATE
TABLE
invoice
(
CREATE
TABLE
t1
(
id
int
(
11
)
unsigned
NOT
NULL
auto_increment
,
text_id
int
(
10
)
unsigned
default
NULL
,
PRIMARY
KEY
(
id
)
);
INSERT
INTO
invoice
VALUES
(
"1"
,
"0"
);
INSERT
INTO
invoice
VALUES
(
"2"
,
"10"
);
INSERT
INTO
t1
VALUES
(
"1"
,
"0"
);
INSERT
INTO
t1
VALUES
(
"2"
,
"10"
);
CREATE
TABLE
t
ext_table
(
CREATE
TABLE
t
2
(
text_id
char
(
3
)
NOT
NULL
default
''
,
language_id
char
(
3
)
NOT
NULL
default
''
,
text_data
text
,
PRIMARY
KEY
(
text_id
,
language_id
)
);
INSERT
INTO
t
ext_table
VALUES
(
"0"
,
"EN"
,
"0-EN"
);
INSERT
INTO
t
ext_table
VALUES
(
"0"
,
"SV"
,
"0-SV"
);
INSERT
INTO
t
ext_table
VALUES
(
"10"
,
"EN"
,
"10-EN"
);
INSERT
INTO
t
ext_table
VALUES
(
"10"
,
"SV"
,
"10-SV"
);
INSERT
INTO
t
2
VALUES
(
"0"
,
"EN"
,
"0-EN"
);
INSERT
INTO
t
2
VALUES
(
"0"
,
"SV"
,
"0-SV"
);
INSERT
INTO
t
2
VALUES
(
"10"
,
"EN"
,
"10-EN"
);
INSERT
INTO
t
2
VALUES
(
"10"
,
"SV"
,
"10-SV"
);
SELECT
invoice
.
id
,
invoice
.
text_id
,
text_table
.
text_data
FROM
invoice
LEFT
JOIN
text_table
ON
invoice
.
text_id
=
text_table
.
text_id
AND
t
ext_table
.
language_id
=
'SV'
WHERE
(
invoice
.
id
LIKE
'%'
OR
text_table
.
text_data
LIKE
'%'
);
SELECT
t1
.
id
,
t1
.
text_id
,
t2
.
text_data
FROM
t1
LEFT
JOIN
t2
ON
t1
.
text_id
=
t2
.
text_id
AND
t
2
.
language_id
=
'SV'
WHERE
(
t1
.
id
LIKE
'%'
OR
t2
.
text_data
LIKE
'%'
);
DROP
TABLE
invoice
,
text_table
;
DROP
TABLE
t1
,
t2
;
# Test for bug #5896
...
...
mysql-test/t/subselect.test
View file @
8d87ef99
...
...
@@ -1417,3 +1417,14 @@ SELECT f1 FROM t1
SELECT
f1
FROM
t1
WHERE
f1
<>
ALL
(
SELECT
SUM
(
f1
)
AS
sf1
FROM
t2
HAVING
sf1
>
10000
);
drop
table
t1
,
t2
;
# Test for BUG#7885: Server crash when 'any' subselect compared to
# non-existant field.
create
table
t1
(
a1
int
);
create
table
t2
(
b1
int
);
--
error
1054
select
*
from
t1
where
a2
>
any
(
select
b1
from
t2
);
select
*
from
t1
where
a1
>
any
(
select
b1
from
t2
);
drop
table
t1
,
t2
;
scripts/make_binary_distribution.sh
View file @
8d87ef99
...
...
@@ -210,8 +210,10 @@ do
done
$CP
mysql-test/include/
*
.inc
$BASE
/mysql-test/include
$CP
mysql-test/std_data/
*
.dat mysql-test/std_data/
*
.
*
001
$BASE
/mysql-test/std_data
$CP
mysql-test/std_data/des_key_file
$BASE
/mysql-test/std_data
$CP
mysql-test/std_data/
*
.dat mysql-test/std_data/
*
.frm
\
mysql-test/std_data/
*
.pem mysql-test/std_data/Moscow_leap
\
mysql-test/std_data/des_key_file mysql-test/std_data/
*
.
*
001
\
$BASE
/mysql-test/std_data
$CP
mysql-test/t/
*
test
mysql-test/t/
*
.opt mysql-test/t/
*
.slave-mi mysql-test/t/
*
.sh
$BASE
/mysql-test/t
$CP
mysql-test/r/
*
result mysql-test/r/
*
.require
$BASE
/mysql-test/r
...
...
sql/item_cmpfunc.h
View file @
8d87ef99
...
...
@@ -264,6 +264,7 @@ class Item_func_trig_cond: public Item_bool_func
longlong
val_int
()
{
return
*
trig_var
?
args
[
0
]
->
val_int
()
:
1
;
}
enum
Functype
functype
()
const
{
return
TRIG_COND_FUNC
;
};
const
char
*
func_name
()
const
{
return
"trigcond"
;
};
bool
const_item
()
const
{
return
FALSE
;
}
};
class
Item_func_not_all
:
public
Item_func_not
...
...
sql/item_subselect.cc
View file @
8d87ef99
...
...
@@ -177,6 +177,8 @@ bool Item_subselect::fix_fields(THD *thd_param, TABLE_LIST *tables, Item **ref)
}
fix_length_and_dec
();
}
else
return
1
;
uint8
uncacheable
=
engine
->
uncacheable
();
if
(
uncacheable
)
{
...
...
@@ -264,7 +266,6 @@ Item_singlerow_subselect::Item_singlerow_subselect(st_select_lex *select_lex)
{
DBUG_ENTER
(
"Item_singlerow_subselect::Item_singlerow_subselect"
);
init
(
select_lex
,
new
select_singlerow_subselect
(
this
));
max_columns
=
1
;
maybe_null
=
1
;
max_columns
=
UINT_MAX
;
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