Details
-
Bug
-
Status: Open (View Workflow)
-
Critical
-
Resolution: Unresolved
-
10.5, 10.6, 10.11, 11.4
Description
The format description FM which toggles Fill Mode for TO_CHAR when used to dates is not recognized. For example:
SELECT CONCAT('/', TO_CHAR('2020-01-06 10:11:12', 'DAY'), '/'); |
Returns (note two spces at the end to fill up to the length of the longest day name (Wed):
/Monday /
|
The FM flag in Oracle negates this blank filling:
SELECT CONCAT('/', TO_CHAR('2020-01-06 10:11:12', 'FMDAY'), '/'); |
Returns:
/Monday/
|
In MariaDB the result of the latter is an error:
ERROR 3047 (HY000): Invalid argument error: date format not recognized at FMDAY in function to_char.
Attachments
Activity
Field | Original Value | New Value |
---|---|---|
Link | This issue is part of MDEV-35973 [ MDEV-35973 ] |
Issue Type | Task [ 3 ] | Bug [ 1 ] |
Affects Version/s | 10.5 [ 23123 ] | |
Affects Version/s | 10.6 [ 24028 ] | |
Affects Version/s | 10.11 [ 27614 ] | |
Affects Version/s | 11.4 [ 29301 ] |
Fix Version/s | 10.11 [ 27614 ] | |
Fix Version/s | 11.4 [ 29301 ] | |
Fix Version/s | 11.8 [ 29921 ] |
Description |
The format description FM which toggles Fill Mode for TO_CHAR when used to dates is not recognized. For example:
SELECT CONCAT('/', TO_CHAR('2020-01-06 10:11:12', 'DAY'), '/'); Returns (note two spces at the end to fill up to the length of the longest day name (Wed): /Monday / The FM flag in Oracle negates this blank filling: SELECT CONCAT('/', TO_CHAR('2020-01-06 10:11:12', 'FMDAY'), '/'); Returns: /Monday/ In MariaDB the result of the latter is an error: ERROR 3047 (HY000): Invalid argument error: date format not recognized at FMDAY in function to_char. |
The format description FM which toggles Fill Mode for TO_CHAR when used to dates is not recognized. For example:
{code:sql}SELECT CONCAT('/', TO_CHAR('2020-01-06 10:11:12', 'DAY'), '/');{code} Returns (note two spces at the end to fill up to the length of the longest day name (Wed): {noformat}/Monday /{noformat} The FM flag in Oracle negates this blank filling: {code:sql}SELECT CONCAT('/', TO_CHAR('2020-01-06 10:11:12', 'FMDAY'), '/');{code} Returns: {noformat}/Monday/{noformat} In MariaDB the result of the latter is an error: ERROR 3047 (HY000): Invalid argument error: date format not recognized at FMDAY in function to_char. |
Assignee | Alexander Barkov [ bar ] |
Link | This issue is part of MDEV-35973 [ MDEV-35973 ] |
Priority | Major [ 3 ] | Critical [ 2 ] |
Priority | Critical [ 2 ] | Major [ 3 ] |
Labels | Compatibility | Compatibility Oracle |
Priority | Major [ 3 ] | Critical [ 2 ] |
ralf.gebhardt, this is a new feature.