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
c5da9112
Commit
c5da9112
authored
Aug 02, 2003
by
igor@rurik.mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
resolving bk problems
parent
9306f55d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
mysql-test/r/func_group.result
mysql-test/r/func_group.result
+2
-2
sql/sql_parse.cc
sql/sql_parse.cc
+1
-1
No files found.
mysql-test/r/func_group.result
View file @
c5da9112
...
@@ -514,7 +514,7 @@ id select_type table type possible_keys key key_len ref rows Extra
...
@@ -514,7 +514,7 @@ id select_type table type possible_keys key key_len ref rows Extra
explain
explain
select min(a1) from t1 where a1 != 'KKK';
select min(a1) from t1 where a1 != 'KKK';
id select_type table type possible_keys key key_len ref rows Extra
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE t1
index NULL
PRIMARY 3 NULL 14 Using where; Using index
1 SIMPLE t1
range PRIMARY
PRIMARY 3 NULL 14 Using where; Using index
explain
explain
select max(a3) from t1 where a2 < 2 and a3 < 'SEA';
select max(a3) from t1 where a2 < 2 and a3 < 'SEA';
id select_type table type possible_keys key key_len ref rows Extra
id select_type table type possible_keys key key_len ref rows Extra
...
@@ -560,7 +560,7 @@ explain
...
@@ -560,7 +560,7 @@ explain
select concat(min(t1.a1),min(t2.a4)) from t1, t2 where t2.a4 <> 'AME';
select concat(min(t1.a1),min(t2.a4)) from t1, t2 where t2.a4 <> 'AME';
id select_type table type possible_keys key key_len ref rows Extra
id select_type table type possible_keys key key_len ref rows Extra
1 SIMPLE t1 index NULL PRIMARY 3 NULL 14 Using index
1 SIMPLE t1 index NULL PRIMARY 3 NULL 14 Using index
1 SIMPLE t2
index NULL
k2 4 NULL 6 Using where; Using index
1 SIMPLE t2
range k2
k2 4 NULL 6 Using where; Using index
drop table t1, t2;
drop table t1, t2;
CREATE TABLE t1 (a int, b int);
CREATE TABLE t1 (a int, b int);
select count(b), sum(b), avg(b), std(b), min(b), max(b), bit_and(b), bit_or(b) from t1;
select count(b), sum(b), avg(b), std(b), min(b), max(b), bit_and(b), bit_or(b) from t1;
...
...
sql/sql_parse.cc
View file @
c5da9112
...
@@ -1895,7 +1895,7 @@ mysql_execute_command(THD *thd)
...
@@ -1895,7 +1895,7 @@ mysql_execute_command(THD *thd)
{
{
if
(
check_db_used
(
thd
,
tables
)
||
if
(
check_db_used
(
thd
,
tables
)
||
check_access
(
thd
,
INDEX_ACL
,
tables
->
db
,
&
tables
->
grant
.
privilege
))
check_access
(
thd
,
INDEX_ACL
,
tables
->
db
,
&
tables
->
grant
.
privilege
))
goto
error
;
goto
error
;
res
=
mysql_assign_to_keycache
(
thd
,
tables
);
res
=
mysql_assign_to_keycache
(
thd
,
tables
);
break
;
break
;
}
}
...
...
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