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
f9c2560f
Commit
f9c2560f
authored
Dec 20, 2000
by
serg@serg.mysql.com
Browse files
Options
Browse Files
Download
Plain Diff
Merge
parents
0a7dfd01
9eea2470
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
12 deletions
+8
-12
mysql-test/mysql-test-run.sh
mysql-test/mysql-test-run.sh
+6
-5
sql/filesort.cc
sql/filesort.cc
+0
-5
sql/sql_select.cc
sql/sql_select.cc
+2
-2
No files found.
mysql-test/mysql-test-run.sh
View file @
f9c2560f
...
...
@@ -68,10 +68,6 @@ SLAVE_RUNNING=0
[
-d
$MY_TMP_DIR
]
||
mkdir
-p
$MY_TMP_DIR
[
-z
"
$COLUMNS
"
]
&&
COLUMNS
=
80
E
=
`
expr
$COLUMNS
- 8
`
DASH72
=
`
expr
substr
'________________________________________________________________________'
1
$E
`
#++
# mysqld Environment Parameters
#--
...
...
@@ -113,6 +109,11 @@ TIME=/usr/bin/time
TR
=
/usr/bin/tr
XARGS
=
`
which xargs |
head
-1
`
[
-z
"
$COLUMNS
"
]
&&
COLUMNS
=
80
E
=
`
$EXPR
$COLUMNS
- 8
`
#DASH72=`expr substr '________________________________________________________________________' 1 $E`
DASH72
=
`
$ECHO
'________________________________________________________________________'
|
$CUT
-c
1-
$E
`
# on source dist, we pick up freshly build executables
# on binary, use what is installed
if
[
x
$SOURCE_DIST
=
x1
]
;
then
...
...
@@ -469,7 +470,7 @@ run_testcase ()
fi
timestr
=
"
$USERT
$SYST
$REALT
"
pname
=
`
$E
XPR
substr
"
$tname
"
1
16
`
pname
=
`
$E
CHO
"
$tname
"
|
$CUT
-c
1-
16
`
$SETCOLOR_NORMAL
&&
$ECHO
-n
"
$pname
$timestr
"
...
...
sql/filesort.cc
View file @
f9c2560f
...
...
@@ -325,11 +325,6 @@ static ha_rows find_all_keys(SORTPARAM *param, SQL_SELECT *select,
file
->
rnd_init
();
file
->
extra
(
HA_EXTRA_CACHE
);
/* Quicker reads */
}
else
if
(
quick_select
)
// QQ For FULLTEXT
{
// QQ Should be removed soon
file
->
index_end
();
select
->
quick
->
init
();
}
for
(;;)
{
...
...
sql/sql_select.cc
View file @
f9c2560f
...
...
@@ -2247,8 +2247,8 @@ make_join_select(JOIN *join,SQL_SELECT *select,COND *cond)
{
/* Use quick key read if it's a constant and it's not used
with key reading */
if
(
tab
->
needed_reg
==
0
&&
tab
->
type
!=
JT_EQ_REF
&&
(
tab
->
type
!=
JT_REF
||
if
(
tab
->
needed_reg
==
0
&&
tab
->
type
!=
JT_EQ_REF
&&
tab
->
type
!=
JT_FT
&&
(
tab
->
type
!=
JT_REF
||
(
uint
)
tab
->
ref
.
key
==
tab
->
quick
->
index
))
{
sel
->
quick
=
tab
->
quick
;
// Use value from get_quick_...
...
...
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