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
0f314c9d
Commit
0f314c9d
authored
Aug 05, 2003
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
make it clear for optimizer that XOR's are not optimizable at the moment (BUG#992)
parent
96456951
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
18 additions
and
2 deletions
+18
-2
mysql-test/r/func_test.result
mysql-test/r/func_test.result
+5
-0
mysql-test/t/func_test.test
mysql-test/t/func_test.test
+5
-0
sql/item_cmpfunc.h
sql/item_cmpfunc.h
+8
-2
No files found.
mysql-test/r/func_test.result
View file @
0f314c9d
...
...
@@ -46,6 +46,11 @@ select 3 ^ 11, 1 ^ 1, 1 ^ 0, 1 ^ NULL, NULL ^ 1;
select 1 XOR 1, 1 XOR 0, 0 XOR 1, 0 XOR 0, NULL XOR 1, 1 XOR NULL, 0 XOR NULL;
1 XOR 1 1 XOR 0 0 XOR 1 0 XOR 0 NULL XOR 1 1 XOR NULL 0 XOR NULL
0 1 1 0 NULL NULL NULL
create table t1 (a int);
insert t1 values (1);
select * from t1 where 1 xor 1;
a
drop table t1;
select 5 between 0 and 10 between 0 and 1,(5 between 0 and 10) between 0 and 1;
5 between 0 and 10 between 0 and 1 (5 between 0 and 10) between 0 and 1
0 1
...
...
mysql-test/t/func_test.test
View file @
0f314c9d
...
...
@@ -18,6 +18,11 @@ select -1.49 or -1.49,0.6 or 0.6;
select
3
^
11
,
1
^
1
,
1
^
0
,
1
^
NULL
,
NULL
^
1
;
select
1
XOR
1
,
1
XOR
0
,
0
XOR
1
,
0
XOR
0
,
NULL
XOR
1
,
1
XOR
NULL
,
0
XOR
NULL
;
create
table
t1
(
a
int
);
insert
t1
values
(
1
);
select
*
from
t1
where
1
xor
1
;
drop
table
t1
;
#
# Wrong usage of functions
#
...
...
sql/item_cmpfunc.h
View file @
0f314c9d
...
...
@@ -28,7 +28,7 @@ class Item_bool_func :public Item_int_func
Item_bool_func
(
Item
*
a
)
:
Item_int_func
(
a
)
{}
Item_bool_func
(
Item
*
a
,
Item
*
b
)
:
Item_int_func
(
a
,
b
)
{}
void
fix_length_and_dec
()
{
decimals
=
0
;
max_length
=
1
;
}
unsigned
int
size_of
()
{
return
sizeof
(
*
this
);}
unsigned
int
size_of
()
{
return
sizeof
(
*
this
);}
};
class
Item_bool_func2
:
public
Item_int_func
...
...
@@ -595,7 +595,7 @@ class Item_cond :public Item_bool_func
void
print
(
String
*
str
);
void
split_sum_func
(
List
<
Item
>
&
fields
);
friend
int
setup_conds
(
THD
*
thd
,
TABLE_LIST
*
tables
,
COND
**
conds
);
unsigned
int
size_of
()
{
return
sizeof
(
*
this
);}
unsigned
int
size_of
()
{
return
sizeof
(
*
this
);}
void
top_level_item
()
{
abort_on_null
=
1
;
}
};
...
...
@@ -634,12 +634,18 @@ inline Item *and_conds(Item *a,Item *b)
return
cond
;
}
/*
XOR is Item_cond, not an Item_int_func bevause we could like to
optimize (a XOR b) later on. It's low prio, though
*/
class
Item_cond_xor
:
public
Item_cond
{
public:
Item_cond_xor
()
:
Item_cond
()
{}
Item_cond_xor
(
Item
*
i1
,
Item
*
i2
)
:
Item_cond
(
i1
,
i2
)
{}
enum
Functype
functype
()
const
{
return
COND_XOR_FUNC
;
}
/* TODO: remove the next line when implementing XOR optimization */
enum
Type
type
()
const
{
return
FUNC_ITEM
;
}
longlong
val_int
();
const
char
*
func_name
()
const
{
return
"xor"
;
}
};
...
...
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