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
0dbf737a
Commit
0dbf737a
authored
Mar 16, 2004
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge bk-internal.mysql.com:/home/bk/mysql-4.1
into mysql.com:/home/my/mysql-4.1 sql/sql_table.cc: Auto merged
parents
33d7754e
543e84c5
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
8 deletions
+5
-8
sql/sql_select.cc
sql/sql_select.cc
+1
-2
sql/sql_table.cc
sql/sql_table.cc
+4
-6
No files found.
sql/sql_select.cc
View file @
0dbf737a
...
...
@@ -842,7 +842,6 @@ JOIN::optimize()
for
(
uint
i_h
=
const_tables
;
i_h
<
tables
;
i_h
++
)
{
TABLE
*
table_h
=
join_tab
[
i_h
].
table
;
if
(
table_h
->
db_type
==
DB_TYPE_INNODB
)
table_h
->
file
->
extra
(
HA_EXTRA_RETRIEVE_ALL_COLS
);
}
}
...
...
sql/sql_table.cc
View file @
0dbf737a
...
...
@@ -2976,12 +2976,10 @@ int mysql_checksum_table(THD *thd, TABLE_LIST *tables, HA_CHECK_OPT *check_opt)
/* calculating table's checksum */
ha_checksum
crc
=
0
;
if
(
t
->
db_type
==
DB_TYPE_INNODB
)
{
/* InnoDB must be told explicitly to retrieve all columns, because
this function does not set field->query_id in the columns to the
current query id */
t
->
file
->
extra
(
HA_EXTRA_RETRIEVE_ALL_COLS
);
}
if
(
t
->
file
->
rnd_init
(
1
))
protocol
->
store_null
();
...
...
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