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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
405a36ae
Commit
405a36ae
authored
Aug 15, 2009
by
Sergey Petrunya
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
MWL#17: Table elimination
- Review feedback, more variable renames
parent
76071c8f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
8 deletions
+7
-8
sql/opt_table_elimination.cc
sql/opt_table_elimination.cc
+7
-8
No files found.
sql/opt_table_elimination.cc
View file @
405a36ae
...
@@ -114,7 +114,6 @@ public:
...
@@ -114,7 +114,6 @@ public:
MODULE_EXPRESSION
,
MODULE_EXPRESSION
,
MODULE_MULTI_EQUALITY
,
MODULE_MULTI_EQUALITY
,
MODULE_UNIQUE_KEY
,
MODULE_UNIQUE_KEY
,
MODULE_TABLE
,
MODULE_OUTER_JOIN
MODULE_OUTER_JOIN
}
type
;
/* Type of the object */
}
type
;
/* Type of the object */
...
@@ -138,7 +137,7 @@ class Equality_module : public Module_dep
...
@@ -138,7 +137,7 @@ class Equality_module : public Module_dep
{
{
public:
public:
Field_value
*
field
;
Field_value
*
field
;
Item
*
val
;
Item
*
expression
;
/* Used during condition analysis only, similar to KEYUSE::level */
/* Used during condition analysis only, similar to KEYUSE::level */
uint
level
;
uint
level
;
...
@@ -510,18 +509,18 @@ Equality_module *merge_func_deps(Equality_module *start, Equality_module *new_fi
...
@@ -510,18 +509,18 @@ Equality_module *merge_func_deps(Equality_module *start, Equality_module *new_fi
*/
*/
if
(
old
->
field
==
new_fields
->
field
)
if
(
old
->
field
==
new_fields
->
field
)
{
{
if
(
!
new_fields
->
val
->
const_item
())
if
(
!
new_fields
->
expression
->
const_item
())
{
{
/*
/*
If the value matches, we can use the key reference.
If the value matches, we can use the key reference.
If not, we keep it until we have examined all new values
If not, we keep it until we have examined all new values
*/
*/
if
(
old
->
val
->
eq
(
new_fields
->
val
,
old
->
field
->
field
->
binary
()))
if
(
old
->
expression
->
eq
(
new_fields
->
expression
,
old
->
field
->
field
->
binary
()))
{
{
old
->
level
=
and_level
;
old
->
level
=
and_level
;
}
}
}
}
else
if
(
old
->
val
->
eq_by_collation
(
new_fields
->
val
,
else
if
(
old
->
expression
->
eq_by_collation
(
new_fields
->
expression
,
old
->
field
->
field
->
binary
(),
old
->
field
->
field
->
binary
(),
old
->
field
->
field
->
charset
()))
old
->
field
->
field
->
charset
()))
{
{
...
@@ -633,7 +632,7 @@ void add_eq_dep(Table_elimination *te, Equality_module **eq_dep,
...
@@ -633,7 +632,7 @@ void add_eq_dep(Table_elimination *te, Equality_module **eq_dep,
/* Store possible eq field */
/* Store possible eq field */
(
*
eq_dep
)
->
type
=
Module_dep
::
MODULE_EXPRESSION
;
//psergey-todo;
(
*
eq_dep
)
->
type
=
Module_dep
::
MODULE_EXPRESSION
;
//psergey-todo;
(
*
eq_dep
)
->
field
=
get_field_value
(
te
,
field
);
(
*
eq_dep
)
->
field
=
get_field_value
(
te
,
field
);
(
*
eq_dep
)
->
val
=
*
value
;
(
*
eq_dep
)
->
expression
=
*
value
;
(
*
eq_dep
)
->
level
=
and_level
;
(
*
eq_dep
)
->
level
=
and_level
;
(
*
eq_dep
)
++
;
(
*
eq_dep
)
++
;
}
}
...
@@ -953,7 +952,7 @@ bool setup_equality_deps(Table_elimination *te, Module_dep **bound_deps_list)
...
@@ -953,7 +952,7 @@ bool setup_equality_deps(Table_elimination *te, Module_dep **bound_deps_list)
{
{
deps_setter
.
expr_offset
=
eq_dep
-
te
->
equality_deps
;
deps_setter
.
expr_offset
=
eq_dep
-
te
->
equality_deps
;
eq_dep
->
unknown_args
=
0
;
eq_dep
->
unknown_args
=
0
;
eq_dep
->
val
->
walk
(
&
Item
::
check_column_usage_processor
,
FALSE
,
eq_dep
->
expression
->
walk
(
&
Item
::
check_column_usage_processor
,
FALSE
,
(
uchar
*
)
&
deps_setter
);
(
uchar
*
)
&
deps_setter
);
if
(
!
eq_dep
->
unknown_args
)
if
(
!
eq_dep
->
unknown_args
)
{
{
...
@@ -1283,7 +1282,7 @@ void dbug_print_deps(Table_elimination *te)
...
@@ -1283,7 +1282,7 @@ void dbug_print_deps(Table_elimination *te)
char buf[128];
char buf[128];
String str(buf, sizeof(buf), &my_charset_bin);
String str(buf, sizeof(buf), &my_charset_bin);
str.length(0);
str.length(0);
eq_dep->
val
->print(&str, QT_ORDINARY);
eq_dep->
expression
->print(&str, QT_ORDINARY);
fprintf(DBUG_FILE, " equality%d: %s -> %s.%s\n",
fprintf(DBUG_FILE, " equality%d: %s -> %s.%s\n",
eq_dep - te->equality_deps,
eq_dep - te->equality_deps,
str.c_ptr(),
str.c_ptr(),
...
...
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