Details
-
Bug
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Duplicate
-
5.5(EOL), 10.0(EOL), 10.1(EOL)
Description
If I start mysql --column-type-info and run this script:
DROP TABLE IF EXISTS t1;
|
CREATE TABLE t1 (a DATETIME);
|
INSERT INTO t1 VALUES ('2001-01-01 10:20:30'),('2001-01-02 10:20:30');
|
SELECT MAX(a), MAX(COALESCE(a)) FROM t1;
|
it returns a correct result set:
+---------------------+---------------------+
|
| MAX(a) | MAX(COALESCE(a)) |
|
+---------------------+---------------------+
|
| 2001-01-02 10:20:30 | 2001-01-02 10:20:30 |
|
+---------------------+---------------------+
|
but the metadata is wrong:
Field 1: `MAX(a)`
|
Catalog: `def`
|
Database: ``
|
Table: ``
|
Org_table: ``
|
Type: DATETIME
|
Collation: binary (63)
|
Length: 19
|
Max_length: 19
|
Decimals: 0
|
Flags: BINARY
|
|
Field 2: `MAX(COALESCE(a))`
|
Catalog: `def`
|
Database: ``
|
Table: ``
|
Org_table: ``
|
Type: VAR_STRING
|
Collation: utf8_general_ci (33)
|
Length: 57
|
Max_length: 19
|
Decimals: 0
|
Flags:
|
Notice, metadata for MAX(COALESCE(a)) says it's a VAR_STRING column.
The correct result is to return the DATETIME data type, as for the first column.
If I change the column data type from DATETIME to TIME:
DROP TABLE IF EXISTS t1;
|
CREATE TABLE t1 (a TIME);
|
INSERT INTO t1 VALUES ('10:20:30'),('10:20:30');
|
SELECT MAX(a), MAX(COALESCE(a)) FROM t1;
|
it also returns VAR_STRING for the second column.
Attachments
Issue Links
Activity
Field | Original Value | New Value |
---|---|---|
Description |
If I start mysql --column-type-info and run this script: {code} DROP TABLE IF EXISTS t1; CREATE TABLE t1 (a DATETIME); INSERT INTO t1 VALUES ('2001-01-01 10:20:30'),('2001-01-02 10:20:30'); SELECT MAX(a), MAX(COALESCE(a)) FROM t1; {code} it returns the following: {noformat} Field 1: `MAX(a)` Catalog: `def` Database: `` Table: `` Org_table: `` Type: DATETIME Collation: binary (63) Length: 19 Max_length: 19 Decimals: 0 Flags: BINARY Field 2: `MAX(COALESCE(a))` Catalog: `def` Database: `` Table: `` Org_table: `` Type: VAR_STRING Collation: utf8_general_ci (33) Length: 57 Max_length: 19 Decimals: 0 Flags: {noformat} Notice, metadata for MAX(COALESCE(a)) says it's a VAR_STRING column. The correct result is to return the DATETIME data type. |
If I start mysql --column-type-info and run this script: {code} DROP TABLE IF EXISTS t1; CREATE TABLE t1 (a DATETIME); INSERT INTO t1 VALUES ('2001-01-01 10:20:30'),('2001-01-02 10:20:30'); SELECT MAX(a), MAX(COALESCE(a)) FROM t1; {code} it returns the following: {noformat} Field 1: `MAX(a)` Catalog: `def` Database: `` Table: `` Org_table: `` Type: DATETIME Collation: binary (63) Length: 19 Max_length: 19 Decimals: 0 Flags: BINARY Field 2: `MAX(COALESCE(a))` Catalog: `def` Database: `` Table: `` Org_table: `` Type: VAR_STRING Collation: utf8_general_ci (33) Length: 57 Max_length: 19 Decimals: 0 Flags: {noformat} Notice, metadata for MAX(COALESCE(a)) says it's a VAR_STRING column. The correct result is to return the DATETIME data type. If I change the column data type from DATETIME to TIME: {code} DROP TABLE IF EXISTS t1; CREATE TABLE t1 (a TIME); INSERT INTO t1 VALUES ('10:20:30'),('10:20:30'); SELECT MAX(a), MAX(COALESCE(a)) FROM t1; {code} it also returns VAR_STRING for the second column, but additionally the result is wrong: {noformat} +----------+------------------+ | MAX(a) | MAX(COALESCE(a)) | +----------+------------------+ | 10:20:30 | 7594:20:30 | +----------+------------------+ {noformat} |
Description |
If I start mysql --column-type-info and run this script: {code} DROP TABLE IF EXISTS t1; CREATE TABLE t1 (a DATETIME); INSERT INTO t1 VALUES ('2001-01-01 10:20:30'),('2001-01-02 10:20:30'); SELECT MAX(a), MAX(COALESCE(a)) FROM t1; {code} it returns the following: {noformat} Field 1: `MAX(a)` Catalog: `def` Database: `` Table: `` Org_table: `` Type: DATETIME Collation: binary (63) Length: 19 Max_length: 19 Decimals: 0 Flags: BINARY Field 2: `MAX(COALESCE(a))` Catalog: `def` Database: `` Table: `` Org_table: `` Type: VAR_STRING Collation: utf8_general_ci (33) Length: 57 Max_length: 19 Decimals: 0 Flags: {noformat} Notice, metadata for MAX(COALESCE(a)) says it's a VAR_STRING column. The correct result is to return the DATETIME data type. If I change the column data type from DATETIME to TIME: {code} DROP TABLE IF EXISTS t1; CREATE TABLE t1 (a TIME); INSERT INTO t1 VALUES ('10:20:30'),('10:20:30'); SELECT MAX(a), MAX(COALESCE(a)) FROM t1; {code} it also returns VAR_STRING for the second column, but additionally the result is wrong: {noformat} +----------+------------------+ | MAX(a) | MAX(COALESCE(a)) | +----------+------------------+ | 10:20:30 | 7594:20:30 | +----------+------------------+ {noformat} |
If I start mysql --column-type-info and run this script: {code} DROP TABLE IF EXISTS t1; CREATE TABLE t1 (a DATETIME); INSERT INTO t1 VALUES ('2001-01-01 10:20:30'),('2001-01-02 10:20:30'); SELECT MAX(a), MAX(COALESCE(a)) FROM t1; {code} it returns a correct result set: {noformat} +---------------------+---------------------+ | MAX(a) | MAX(COALESCE(a)) | +---------------------+---------------------+ | 2001-01-02 10:20:30 | 2001-01-02 10:20:30 | +---------------------+---------------------+ {noformat} but the metadata is wrong: {noformat} Field 1: `MAX(a)` Catalog: `def` Database: `` Table: `` Org_table: `` Type: DATETIME Collation: binary (63) Length: 19 Max_length: 19 Decimals: 0 Flags: BINARY Field 2: `MAX(COALESCE(a))` Catalog: `def` Database: `` Table: `` Org_table: `` Type: VAR_STRING Collation: utf8_general_ci (33) Length: 57 Max_length: 19 Decimals: 0 Flags: {noformat} Notice, metadata for MAX(COALESCE(a)) says it's a VAR_STRING column. The correct result is to return the DATETIME data type, as for the first column. If I change the column data type from DATETIME to TIME: {code} DROP TABLE IF EXISTS t1; CREATE TABLE t1 (a TIME); INSERT INTO t1 VALUES ('10:20:30'),('10:20:30'); SELECT MAX(a), MAX(COALESCE(a)) FROM t1; {code} it also returns VAR_STRING for the second column, but additionally the result is wrong: {noformat} +----------+------------------+ | MAX(a) | MAX(COALESCE(a)) | +----------+------------------+ | 10:20:30 | 7594:20:30 | +----------+------------------+ {noformat} |
Description |
If I start mysql --column-type-info and run this script: {code} DROP TABLE IF EXISTS t1; CREATE TABLE t1 (a DATETIME); INSERT INTO t1 VALUES ('2001-01-01 10:20:30'),('2001-01-02 10:20:30'); SELECT MAX(a), MAX(COALESCE(a)) FROM t1; {code} it returns a correct result set: {noformat} +---------------------+---------------------+ | MAX(a) | MAX(COALESCE(a)) | +---------------------+---------------------+ | 2001-01-02 10:20:30 | 2001-01-02 10:20:30 | +---------------------+---------------------+ {noformat} but the metadata is wrong: {noformat} Field 1: `MAX(a)` Catalog: `def` Database: `` Table: `` Org_table: `` Type: DATETIME Collation: binary (63) Length: 19 Max_length: 19 Decimals: 0 Flags: BINARY Field 2: `MAX(COALESCE(a))` Catalog: `def` Database: `` Table: `` Org_table: `` Type: VAR_STRING Collation: utf8_general_ci (33) Length: 57 Max_length: 19 Decimals: 0 Flags: {noformat} Notice, metadata for MAX(COALESCE(a)) says it's a VAR_STRING column. The correct result is to return the DATETIME data type, as for the first column. If I change the column data type from DATETIME to TIME: {code} DROP TABLE IF EXISTS t1; CREATE TABLE t1 (a TIME); INSERT INTO t1 VALUES ('10:20:30'),('10:20:30'); SELECT MAX(a), MAX(COALESCE(a)) FROM t1; {code} it also returns VAR_STRING for the second column, but additionally the result is wrong: {noformat} +----------+------------------+ | MAX(a) | MAX(COALESCE(a)) | +----------+------------------+ | 10:20:30 | 7594:20:30 | +----------+------------------+ {noformat} |
If I start mysql --column-type-info and run this script: {code} DROP TABLE IF EXISTS t1; CREATE TABLE t1 (a DATETIME); INSERT INTO t1 VALUES ('2001-01-01 10:20:30'),('2001-01-02 10:20:30'); SELECT MAX(a), MAX(COALESCE(a)) FROM t1; {code} it returns a correct result set: {noformat} +---------------------+---------------------+ | MAX(a) | MAX(COALESCE(a)) | +---------------------+---------------------+ | 2001-01-02 10:20:30 | 2001-01-02 10:20:30 | +---------------------+---------------------+ {noformat} but the metadata is wrong: {noformat} Field 1: `MAX(a)` Catalog: `def` Database: `` Table: `` Org_table: `` Type: DATETIME Collation: binary (63) Length: 19 Max_length: 19 Decimals: 0 Flags: BINARY Field 2: `MAX(COALESCE(a))` Catalog: `def` Database: `` Table: `` Org_table: `` Type: VAR_STRING Collation: utf8_general_ci (33) Length: 57 Max_length: 19 Decimals: 0 Flags: {noformat} Notice, metadata for MAX(COALESCE(a)) says it's a VAR_STRING column. The correct result is to return the DATETIME data type, as for the first column. If I change the column data type from DATETIME to TIME: {code} DROP TABLE IF EXISTS t1; CREATE TABLE t1 (a TIME); INSERT INTO t1 VALUES ('10:20:30'),('10:20:30'); SELECT MAX(a), MAX(COALESCE(a)) FROM t1; {code} it also returns VAR_STRING for the second column. |
Labels | upstream |
Component/s | Temporal Types [ 11000 ] |
Affects Version/s | 10.1 [ 16100 ] | |
Affects Version/s | 10.0 [ 16000 ] | |
Affects Version/s | 5.5 [ 15800 ] |
Assignee | Alexander Barkov [ bar ] |
Fix Version/s | 10.1 [ 16100 ] |
Fix Version/s | 10.2 [ 14601 ] | |
Fix Version/s | 10.1 [ 16100 ] |
Fix Version/s | N/A [ 14700 ] | |
Fix Version/s | 10.2 [ 14601 ] | |
Resolution | Duplicate [ 3 ] | |
Status | Open [ 1 ] | Closed [ 6 ] |
Workflow | MariaDB v3 [ 71806 ] | MariaDB v4 [ 149658 ] |