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
52ba7b69
Commit
52ba7b69
authored
Jul 19, 2005
by
konstantin@mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
After-merge fixes.
parent
52b8928b
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
13 additions
and
11 deletions
+13
-11
configure.in
configure.in
+3
-3
mysql-test/r/olap.result
mysql-test/r/olap.result
+1
-0
mysql-test/r/rpl_log.result
mysql-test/r/rpl_log.result
+2
-2
mysql-test/r/rpl_rotate_logs.result
mysql-test/r/rpl_rotate_logs.result
+6
-6
mysql-test/t/olap.test
mysql-test/t/olap.test
+1
-0
No files found.
configure.in
View file @
52ba7b69
...
...
@@ -1965,7 +1965,7 @@ AC_LANG_CPLUSPLUS
if
test
"
$ac_cv_prog_gxx
"
=
"yes"
-a
"
$with_other_libc
"
=
"no"
then
CXXFLAGS
=
`
echo
"
$CXXFLAGS
-Werror"
|
sed
-e
's/-fbranch-probabilities//; s/-Wall//; s/-Wcheck//'
`
CXXFLAGS
=
`
echo
"
$CXXFLAGS
-Werror"
|
sed
-e
's/-fbranch-probabilities//; s/-Wall//; s/-
ansi//; s/-pedantic//; s/-
Wcheck//'
`
fi
AC_TRY_COMPILE
(
...
...
@@ -2000,7 +2000,7 @@ AC_LANG_SAVE
AC_LANG_CPLUSPLUS
if
test
"
$ac_cv_prog_gxx
"
=
"yes"
-a
"
$with_other_libc
"
=
"no"
then
CXXFLAGS
=
`
echo
"
$CXXFLAGS
-Werror"
|
sed
-e
's/-fbranch-probabilities//; s/-Wall//; s/-Wcheck//'
`
CXXFLAGS
=
`
echo
"
$CXXFLAGS
-Werror"
|
sed
-e
's/-fbranch-probabilities//; s/-Wall//; s/-
ansi//; s/-pedantic//; s/-
Wcheck//'
`
fi
AC_TRY_COMPILE
(
[
#undef inline
...
...
@@ -2033,7 +2033,7 @@ AC_LANG_SAVE
AC_LANG_CPLUSPLUS
if
test
"
$ac_cv_prog_gxx
"
=
"yes"
-a
"
$with_other_libc
"
=
"no"
then
CXXFLAGS
=
`
echo
"
$CXXFLAGS
-Werror"
|
sed
-e
's/-fbranch-probabilities//; s/-Wall//; s/-Wcheck//'
`
CXXFLAGS
=
`
echo
"
$CXXFLAGS
-Werror"
|
sed
-e
's/-fbranch-probabilities//; s/-Wall//; s/-
ansi//; s/-pedantic//; s/-
Wcheck//'
`
fi
AC_TRY_COMPILE
(
[
#undef inline
...
...
mysql-test/r/olap.result
View file @
52ba7b69
...
...
@@ -576,6 +576,7 @@ EXPLAIN SELECT type FROM v1 GROUP BY type WITH ROLLUP;
id select_type table type possible_keys key key_len ref rows Extra
1 PRIMARY t1 ALL NULL NULL NULL NULL 10 Using filesort
DROP VIEW v1;
DROP TABLE t1;
CREATE TABLE t1 (a INT(10) NOT NULL, b INT(10) NOT NULL);
INSERT INTO t1 VALUES (1, 1);
INSERT INTO t1 VALUES (1, 2);
...
...
mysql-test/r/rpl_log.result
View file @
52ba7b69
...
...
@@ -69,12 +69,12 @@ master-bin.000002 346 Query 1 434 use `test`; insert into t1 values (1)
master-bin.000002 434 Query 1 510 use `test`; drop table t1
show binary logs;
Log_name File_size
master-bin.000001 1
171
master-bin.000001 1
389
master-bin.000002 510
start slave;
show binary logs;
Log_name File_size
slave-bin.000001 1
285
slave-bin.000001 1
559
slave-bin.000002 348
show binlog events in 'slave-bin.000001' from 4;
Log_name Pos Event_type Server_id End_log_pos Info
...
...
mysql-test/r/rpl_rotate_logs.result
View file @
52ba7b69
...
...
@@ -27,8 +27,8 @@ insert into t2 values (34),(67),(123);
flush logs;
show binary logs;
Log_name File_size
master-bin.000001
461
master-bin.000002
21
3
master-bin.000001
592
master-bin.000002
36
3
master-bin.000003 98
create table t3 select * from temp_table;
select * from t3;
...
...
@@ -43,12 +43,12 @@ start slave;
purge master logs to 'master-bin.000002';
show master logs;
Log_name File_size
master-bin.000002
21
3
master-bin.000002
36
3
master-bin.000003 407
purge binary logs to 'master-bin.000002';
show binary logs;
Log_name File_size
master-bin.000002
21
3
master-bin.000002
36
3
master-bin.000003 407
purge master logs before now();
show binary logs;
...
...
@@ -74,8 +74,8 @@ count(*)
create table t4 select * from temp_table;
show binary logs;
Log_name File_size
master-bin.000003 41
67
master-bin.000004 0
master-bin.000003 41
85
master-bin.000004
419
0
master-bin.000005 2032
show master status;
File Position Binlog_Do_DB Binlog_Ignore_DB
...
...
mysql-test/t/olap.test
View file @
52ba7b69
...
...
@@ -265,6 +265,7 @@ SELECT type FROM v1 GROUP BY type WITH ROLLUP;
EXPLAIN
SELECT
type
FROM
v1
GROUP
BY
type
WITH
ROLLUP
;
DROP
VIEW
v1
;
DROP
TABLE
t1
;
# Test for bug #11543: ROLLUP query with a repeated column in GROUP BY
#
...
...
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