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
3f6cdec7
Commit
3f6cdec7
authored
Apr 07, 2005
by
sergefp@mysql.com
Browse files
Options
Browse Files
Download
Plain Diff
Merge spetrunia@bk-internal.mysql.com:/home/bk/mysql-4.1
into mysql.com:/home/psergey/mysql-4.1-bug8877
parents
934f4581
0cd5877b
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
161 additions
and
12 deletions
+161
-12
sql/sql_select.cc
sql/sql_select.cc
+151
-12
sql/sql_select.h
sql/sql_select.h
+10
-0
No files found.
sql/sql_select.cc
View file @
3f6cdec7
This diff is collapsed.
Click to expand it.
sql/sql_select.h
View file @
3f6cdec7
...
...
@@ -31,6 +31,11 @@ typedef struct keyuse_t {
uint
key
,
keypart
,
optimize
;
key_part_map
keypart_map
;
ha_rows
ref_table_rows
;
/*
If true, the comparison this value was created from will not be
satisfied if val has NULL 'value'.
*/
bool
null_rejecting
;
}
KEYUSE
;
class
store_key
;
...
...
@@ -45,6 +50,11 @@ typedef struct st_table_ref
byte
*
key_buff2
;
// key_buff+key_length
store_key
**
key_copy
;
//
Item
**
items
;
// val()'s for each keypart
/*
(null_rejecting & (1<<i)) means the condition is '=' and no matching
rows will be produced if items[i] IS NULL (see add_not_null_conds())
*/
key_part_map
null_rejecting
;
table_map
depend_map
;
// Table depends on these tables.
byte
*
null_ref_key
;
// null byte position in the key_buf.
// used for REF_OR_NULL optimization.
...
...
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