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
b69f49c0
Commit
b69f49c0
authored
Sep 09, 2005
by
serg@serg.mylan
Browse files
Options
Browse Files
Download
Plain Diff
Merge bk-internal.mysql.com:/home/bk/mysql-5.0
into serg.mylan:/usr/home/serg/Abk/mysql-5.0
parents
57c3ed9e
c7eaac52
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
23 additions
and
5 deletions
+23
-5
mysql-test/t/group_by.test
mysql-test/t/group_by.test
+10
-0
sql/handler.cc
sql/handler.cc
+13
-5
No files found.
mysql-test/t/group_by.test
View file @
b69f49c0
...
...
@@ -612,6 +612,16 @@ SELECT n+1 AS n FROM t1 GROUP BY n;
--
enable_ps_protocol
DROP
TABLE
t1
;
#
# BUG#12695: Item_func_isnull::update_used_tables
# did not update const_item_cache
#
create
table
t1
(
f1
varchar
(
5
)
key
);
insert
into
t1
values
(
1
),(
2
);
select
sql_buffer_result
max
(
f1
)
is
null
from
t1
;
select
sql_buffer_result
max
(
f1
)
+
1
from
t1
;
drop
table
t1
;
# End of 4.1 tests
#
...
...
sql/handler.cc
View file @
b69f49c0
...
...
@@ -570,6 +570,8 @@ int ha_prepare(THD *thd)
{
int
err
;
statistic_increment
(
thd
->
status_var
.
ha_prepare_count
,
&
LOCK_status
);
if
((
*
ht
)
->
prepare
)
{
if
((
err
=
(
*
(
*
ht
)
->
prepare
)(
thd
,
all
)))
{
my_error
(
ER_ERROR_DURING_COMMIT
,
MYF
(
0
),
err
);
...
...
@@ -578,6 +580,12 @@ int ha_prepare(THD *thd)
break
;
}
}
else
{
push_warning_printf
(
thd
,
MYSQL_ERROR
::
WARN_LEVEL_WARN
,
ER_ILLEGAL_HA
,
ER
(
ER_ILLEGAL_HA
),
(
*
ht
)
->
name
);
}
}
}
#endif
/* USING_TRANSACTIONS */
DBUG_RETURN
(
error
);
...
...
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