You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: man/perror.1
+5-10Lines changed: 5 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -1,17 +1,12 @@
1
1
.TH perror 1 "19 December 2000" "MySQL 3.23" "MySQL database"
2
2
.SH NAME
3
-
.BR perror
4
-
can be used to display a description for a system error code, or an MyISAM/ISAM table handler error code. The error messages are mostly system dependent.
5
-
.SH USAGE
6
-
perror [OPTIONS] [ERRORCODE [ERRORCODE...]]
3
+
perror \- describes a system or MySQL error code.
7
4
.SH SYNOPSIS
8
-
.Bperror
9
-
.RB [ \-? | \-\-help ]
10
-
.RB [ \-I | \-\-info ]
11
-
.RB [ \-s | \-\-silent ]
12
-
.RB [ \-v | \-\-verbose ]
13
-
.RB [ \-V | \-\-version ]
5
+
perror [OPTIONS] [ERRORCODE [ERRORCODE...]]
14
6
.SH DESCRIPTION
7
+
Can be used to display a description for a system error code, or an MyISAM/ISAM table handler error code.
Copy file name to clipboardExpand all lines: mysql-test/t/group_by.test
+10-1Lines changed: 10 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -68,7 +68,8 @@ CREATE TABLE t1 (
68
68
69
69
INSERT INTO t1 VALUES (1,'1970-01-01','1997-10-17 00:00:00',2529,1,21000,11886,'check',0,'F',16200,6);
70
70
71
-
!$1056 SELECT COUNT(P.URID),SUM(P.amount),P.method, MIN(PP.recdate+0) > 19980501000000 AS IsNew FROM t1 AS P JOIN t1 as PP WHERE P.URID = PP.URID GROUP BY method,IsNew;
71
+
--error 1056
72
+
SELECT COUNT(P.URID),SUM(P.amount),P.method, MIN(PP.recdate+0) > 19980501000000 AS IsNew FROM t1 AS P JOIN t1 as PP WHERE P.URID = PP.URID GROUP BY method,IsNew;
72
73
73
74
drop table t1;
74
75
@@ -255,6 +256,14 @@ select sql_big_result score,count(*) from t1 group by score desc;
255
256
drop table t1;
256
257
257
258
#
259
+
260
+
# not purely group_by bug, but group_by is involved...
261
+
262
+
create table t1 (a date default null, b date default null);
0 commit comments