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
5c6902a4
Commit
5c6902a4
authored
Mar 16, 2002
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added some comments
parent
00f6850d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
4 deletions
+8
-4
sql/sql_class.h
sql/sql_class.h
+4
-1
sql/table.h
sql/table.h
+4
-3
No files found.
sql/sql_class.h
View file @
5c6902a4
...
...
@@ -473,7 +473,10 @@ class THD :public ilink {
}
};
/*
Used to hold information about file and file structure in exchainge
via non-DB file (...INTO OUTFILE..., ...LOAD DATA...)
*/
class
sql_exchange
:
public
Sql_alloc
{
public:
...
...
sql/table.h
View file @
5c6902a4
...
...
@@ -111,7 +111,7 @@ struct st_table {
char
*
table_name
,
*
real_name
,
*
path
;
uint
key_length
;
/* Length of key */
uint
tablenr
,
used_fields
,
null_bytes
;
table_map
map
;
table_map
map
;
/* ID bit of table (1,2,4,8,16...) */
ulong
version
,
flush_version
;
uchar
*
null_flags
;
IO_CACHE
*
io_cache
;
/* If sorted trough file*/
...
...
@@ -139,13 +139,14 @@ typedef struct st_table_list {
char
*
db
,
*
name
,
*
real_name
;
Item
*
on_expr
;
/* Used with outer join */
struct
st_table_list
*
natural_join
;
/* natural join on this table*/
List
<
String
>
*
use_index
,
*
ignore_index
;
/* ... join ... USE INDEX ... IGNORE INDEX */
List
<
String
>
*
use_index
,
*
ignore_index
;
TABLE
*
table
;
GRANT_INFO
grant
;
thr_lock_type
lock_type
;
uint
outer_join
;
/* Which join type */
bool
straight
;
/* optimize with prev table */
bool
updating
;
/* for replicate-do/ignore table */
bool
updating
;
/* for replicate-do/ignore table */
bool
shared
;
/* Used twice in union */
}
TABLE_LIST
;
...
...
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