Note, DECODE() is parsed differently depending on sql_mode. There are two different implementations:
- for sql_mode=DEFAULT
- for sql_mode=ORACLE.
If I change sql_mode after creating a table using DECODE() in a virtual column, the table becomes not functional in some cases.
Working example
If I create a table using sql_mode=ORACLE with a column using Oracle-style DECODE() function, later I can see the table definition even when sql_mode=ORACLE.
SET sql_mode=ORACLE;
|
CREATE OR REPLACE TABLE t1 (a INT, b VARCHAR(32) GENERATED ALWAYS AS (DECODE(a, 1,'a1',2,'a2')));
|
SET sql_mode=DEFAULT;
|
SHOW CREATE TABLE t1;
|
+-------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
|
| Table | Create Table |
|
+-------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
|
| t1 | CREATE TABLE `t1` (
|
`a` int(11) DEFAULT NULL,
|
`b` varchar(32) GENERATED ALWAYS AS (decode_oracle(`a`,1,'a1',2,'a2')) VIRTUAL
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1 |
|
+-------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
|
Notice, DECODE() was translated to DECODE_ORACLE(). Looks fine so far.
Non working example
Now if I do the other way around, i.e. create a table with sql_mode=DEFAULT using MariaDB-style DECODE()), later I cannot see its definition with sql_mode=ORACLE:
SET sql_mode=DEFAULT;
|
CREATE OR REPLACE TABLE t1 (a VARCHAR(32), b VARCHAR(32) GENERATED ALWAYS AS (HEX(DECODE('a', 'x'))));
|
SET sql_mode=ORACLE;
|
SHOW CREATE TABLE t1;
|
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near '))'
|
The problem happens because DECODE() stays in the table definition as such - it does not get translated to unabiguous sql_mode independent name, for example DECODE_MARIADB().
Note, DML actions on this table also return the same error:
SET sql_mode=DEFAULT;
|
CREATE OR REPLACE TABLE t1 (a VARCHAR(32), b VARCHAR(32) GENERATED ALWAYS AS (HEX(DECODE('a', 'x'))));
|
SET sql_mode=ORACLE;
|
DELETE FROM t1;
|
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near '))' at line 1
|
SET sql_mode=DEFAULT;
|
CREATE OR REPLACE TABLE t1 (a VARCHAR(32), b VARCHAR(32) GENERATED ALWAYS AS (HEX(DECODE('a', 'x'))));
|
SET sql_mode=ORACLE;
|
TRUNCATE TABLE t1;
|
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near '))' at line 1
|
Information schema queries are also affected: they do not return any useful information:
SET sql_mode=DEFAULT;
|
CREATE OR REPLACE TABLE t1 (a VARCHAR(32), b VARCHAR(32) GENERATED ALWAYS AS (HEX(DECODE('a', 'x'))));
|
SET sql_mode=ORACLE;
|
SELECT * FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_NAME='t1'\G
|
*************************** 1. row ***************************
|
TABLE_CATALOG: def
|
TABLE_SCHEMA: test
|
TABLE_NAME: t1
|
TABLE_TYPE: BASE TABLE
|
ENGINE: NULL
|
VERSION: NULL
|
ROW_FORMAT: NULL
|
TABLE_ROWS: NULL
|
AVG_ROW_LENGTH: NULL
|
DATA_LENGTH: NULL
|
MAX_DATA_LENGTH: NULL
|
INDEX_LENGTH: NULL
|
DATA_FREE: NULL
|
AUTO_INCREMENT: NULL
|
CREATE_TIME: NULL
|
UPDATE_TIME: NULL
|
CHECK_TIME: NULL
|
TABLE_COLLATION: NULL
|
CHECKSUM: NULL
|
CREATE_OPTIONS: NULL
|
TABLE_COMMENT: You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near '))' at line 1
|
MAX_INDEX_LENGTH: NULL
|
TEMPORARY: NULL
|
1 row in set, 1 warning (0.003 sec)
|
{"report":{"fcp":1057.7000002861023,"ttfb":260.90000009536743,"pageVisibility":"visible","entityId":88722,"key":"jira.project.issue.view-issue","isInitial":true,"threshold":1000,"elementTimings":{},"userDeviceMemory":8,"userDeviceProcessors":64,"apdex":0.5,"journeyId":"6bb36c9e-d4c1-4d34-a092-9740623fac18","navigationType":0,"readyForUser":1202.6000003814697,"redirectCount":0,"resourceLoadedEnd":1523.7000002861023,"resourceLoadedStart":266.7000002861023,"resourceTiming":[{"duration":234.09999990463257,"initiatorType":"link","name":"https://jira.mariadb.org/s/2c21342762a6a02add1c328bed317ffd-CDN/lu2cib/820016/12ta74/0a8bac35585be7fc6c9cc5a0464cd4cf/_/download/contextbatch/css/_super/batch.css","startTime":266.7000002861023,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":266.7000002861023,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":500.80000019073486,"responseStart":0,"secureConnectionStart":0},{"duration":234.2000002861023,"initiatorType":"link","name":"https://jira.mariadb.org/s/7ebd35e77e471bc30ff0eba799ebc151-CDN/lu2cib/820016/12ta74/494e4c556ecbb29f90a3d3b4f09cb99c/_/download/contextbatch/css/jira.browse.project,project.issue.navigator,jira.view.issue,jira.general,jira.global,atl.general,-_super/batch.css?agile_global_admin_condition=true&jag=true&jira.create.linked.issue=true&slack-enabled=true&whisper-enabled=true","startTime":267,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":267,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":501.2000002861023,"responseStart":0,"secureConnectionStart":0},{"duration":242.5,"initiatorType":"script","name":"https://jira.mariadb.org/s/0917945aaa57108d00c5076fea35e069-CDN/lu2cib/820016/12ta74/0a8bac35585be7fc6c9cc5a0464cd4cf/_/download/contextbatch/js/_super/batch.js?locale=en","startTime":267.2000002861023,"connectEnd":267.2000002861023,"connectStart":267.2000002861023,"domainLookupEnd":267.2000002861023,"domainLookupStart":267.2000002861023,"fetchStart":267.2000002861023,"redirectEnd":0,"redirectStart":0,"requestStart":267.2000002861023,"responseEnd":509.7000002861023,"responseStart":509.7000002861023,"secureConnectionStart":267.2000002861023},{"duration":310.80000019073486,"initiatorType":"script","name":"https://jira.mariadb.org/s/2d8175ec2fa4c816e8023260bd8c1786-CDN/lu2cib/820016/12ta74/494e4c556ecbb29f90a3d3b4f09cb99c/_/download/contextbatch/js/jira.browse.project,project.issue.navigator,jira.view.issue,jira.general,jira.global,atl.general,-_super/batch.js?agile_global_admin_condition=true&jag=true&jira.create.linked.issue=true&locale=en&slack-enabled=true&whisper-enabled=true","startTime":267.40000009536743,"connectEnd":267.40000009536743,"connectStart":267.40000009536743,"domainLookupEnd":267.40000009536743,"domainLookupStart":267.40000009536743,"fetchStart":267.40000009536743,"redirectEnd":0,"redirectStart":0,"requestStart":267.40000009536743,"responseEnd":578.2000002861023,"responseStart":578.2000002861023,"secureConnectionStart":267.40000009536743},{"duration":314.90000009536743,"initiatorType":"script","name":"https://jira.mariadb.org/s/a9324d6758d385eb45c462685ad88f1d-CDN/lu2cib/820016/12ta74/c92c0caa9a024ae85b0ebdbed7fb4bd7/_/download/contextbatch/js/atl.global,-_super/batch.js?locale=en","startTime":267.5,"connectEnd":267.5,"connectStart":267.5,"domainLookupEnd":267.5,"domainLookupStart":267.5,"fetchStart":267.5,"redirectEnd":0,"redirectStart":0,"requestStart":267.5,"responseEnd":582.4000000953674,"responseStart":582.4000000953674,"secureConnectionStart":267.5},{"duration":315.09999990463257,"initiatorType":"script","name":"https://jira.mariadb.org/s/d41d8cd98f00b204e9800998ecf8427e-CDN/lu2cib/820016/12ta74/1.0/_/download/batch/jira.webresources:calendar-en/jira.webresources:calendar-en.js","startTime":267.80000019073486,"connectEnd":267.80000019073486,"connectStart":267.80000019073486,"domainLookupEnd":267.80000019073486,"domainLookupStart":267.80000019073486,"fetchStart":267.80000019073486,"redirectEnd":0,"redirectStart":0,"requestStart":267.80000019073486,"responseEnd":582.9000000953674,"responseStart":582.9000000953674,"secureConnectionStart":267.80000019073486},{"duration":315.2000002861023,"initiatorType":"script","name":"https://jira.mariadb.org/s/d41d8cd98f00b204e9800998ecf8427e-CDN/lu2cib/820016/12ta74/1.0/_/download/batch/jira.webresources:calendar-localisation-moment/jira.webresources:calendar-localisation-moment.js","startTime":268,"connectEnd":268,"connectStart":268,"domainLookupEnd":268,"domainLookupStart":268,"fetchStart":268,"redirectEnd":0,"redirectStart":0,"requestStart":268,"responseEnd":583.2000002861023,"responseStart":583.2000002861023,"secureConnectionStart":268},{"duration":392.69999980926514,"initiatorType":"link","name":"https://jira.mariadb.org/s/b04b06a02d1959df322d9cded3aeecc1-CDN/lu2cib/820016/12ta74/a2ff6aa845ffc9a1d22fe23d9ee791fc/_/download/contextbatch/css/jira.global.look-and-feel,-_super/batch.css","startTime":268.1000003814697,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":268.1000003814697,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":660.8000001907349,"responseStart":0,"secureConnectionStart":0},{"duration":315.5,"initiatorType":"script","name":"https://jira.mariadb.org/rest/api/1.0/shortcuts/820016/47140b6e0a9bc2e4913da06536125810/shortcuts.js?context=issuenavigation&context=issueaction","startTime":268.30000019073486,"connectEnd":268.30000019073486,"connectStart":268.30000019073486,"domainLookupEnd":268.30000019073486,"domainLookupStart":268.30000019073486,"fetchStart":268.30000019073486,"redirectEnd":0,"redirectStart":0,"requestStart":268.30000019073486,"responseEnd":583.8000001907349,"responseStart":583.8000001907349,"secureConnectionStart":268.30000019073486},{"duration":392.5,"initiatorType":"link","name":"https://jira.mariadb.org/s/3ac36323ba5e4eb0af2aa7ac7211b4bb-CDN/lu2cib/820016/12ta74/d176f0986478cc64f24226b3d20c140d/_/download/contextbatch/css/com.atlassian.jira.projects.sidebar.init,-_super,-project.issue.navigator,-jira.view.issue/batch.css?jira.create.linked.issue=true","startTime":268.5,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":268.5,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":661,"responseStart":0,"secureConnectionStart":0},{"duration":315.69999980926514,"initiatorType":"script","name":"https://jira.mariadb.org/s/5d5e8fe91fbc506585e83ea3b62ccc4b-CDN/lu2cib/820016/12ta74/d176f0986478cc64f24226b3d20c140d/_/download/contextbatch/js/com.atlassian.jira.projects.sidebar.init,-_super,-project.issue.navigator,-jira.view.issue/batch.js?jira.create.linked.issue=true&locale=en","startTime":268.6000003814697,"connectEnd":268.6000003814697,"connectStart":268.6000003814697,"domainLookupEnd":268.6000003814697,"domainLookupStart":268.6000003814697,"fetchStart":268.6000003814697,"redirectEnd":0,"redirectStart":0,"requestStart":268.6000003814697,"responseEnd":584.3000001907349,"responseStart":584.3000001907349,"secureConnectionStart":268.6000003814697},{"duration":509.59999990463257,"initiatorType":"script","name":"https://jira.mariadb.org/s/d41d8cd98f00b204e9800998ecf8427e-CDN/lu2cib/820016/12ta74/1.0/_/download/batch/jira.webresources:bigpipe-js/jira.webresources:bigpipe-js.js","startTime":276.6000003814697,"connectEnd":276.6000003814697,"connectStart":276.6000003814697,"domainLookupEnd":276.6000003814697,"domainLookupStart":276.6000003814697,"fetchStart":276.6000003814697,"redirectEnd":0,"redirectStart":0,"requestStart":276.6000003814697,"responseEnd":786.2000002861023,"responseStart":786.2000002861023,"secureConnectionStart":276.6000003814697},{"duration":1246.8000001907349,"initiatorType":"script","name":"https://jira.mariadb.org/s/d41d8cd98f00b204e9800998ecf8427e-CDN/lu2cib/820016/12ta74/1.0/_/download/batch/jira.webresources:bigpipe-init/jira.webresources:bigpipe-init.js","startTime":276.90000009536743,"connectEnd":276.90000009536743,"connectStart":276.90000009536743,"domainLookupEnd":276.90000009536743,"domainLookupStart":276.90000009536743,"fetchStart":276.90000009536743,"redirectEnd":0,"redirectStart":0,"requestStart":276.90000009536743,"responseEnd":1523.7000002861023,"responseStart":1523.7000002861023,"secureConnectionStart":276.90000009536743},{"duration":100.39999961853027,"initiatorType":"xmlhttprequest","name":"https://jira.mariadb.org/rest/webResources/1.0/resources","startTime":689.1000003814697,"connectEnd":689.1000003814697,"connectStart":689.1000003814697,"domainLookupEnd":689.1000003814697,"domainLookupStart":689.1000003814697,"fetchStart":689.1000003814697,"redirectEnd":0,"redirectStart":0,"requestStart":689.1000003814697,"responseEnd":789.5,"responseStart":789.5,"secureConnectionStart":689.1000003814697},{"duration":595.3000001907349,"initiatorType":"link","name":"https://jira.mariadb.org/s/d5715adaadd168a9002b108b2b039b50-CDN/lu2cib/820016/12ta74/be4b45e9cec53099498fa61c8b7acba4/_/download/contextbatch/css/jira.project.sidebar,-_super,-project.issue.navigator,-jira.general,-jira.browse.project,-jira.view.issue,-jira.global,-atl.general,-com.atlassian.jira.projects.sidebar.init/batch.css?agile_global_admin_condition=true&jag=true&jira.create.linked.issue=true&slack-enabled=true&whisper-enabled=true","startTime":996.3000001907349,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":996.3000001907349,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":1591.6000003814697,"responseStart":0,"secureConnectionStart":0}],"fetchStart":1,"domainLookupStart":1,"domainLookupEnd":1,"connectStart":1,"connectEnd":1,"requestStart":97,"responseStart":261,"responseEnd":273,"domLoading":265,"domInteractive":1543,"domContentLoadedEventStart":1543,"domContentLoadedEventEnd":1592,"domComplete":2194,"loadEventStart":2194,"loadEventEnd":2195,"userAgent":"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)","marks":[{"name":"bigPipe.sidebar-id.start","time":1525.7000002861023},{"name":"bigPipe.sidebar-id.end","time":1526.8000001907349},{"name":"bigPipe.activity-panel-pipe-id.start","time":1527},{"name":"bigPipe.activity-panel-pipe-id.end","time":1527.9000000953674},{"name":"activityTabFullyLoaded","time":1607.9000000953674}],"measures":[],"correlationId":"2af3cd624cd9cc","effectiveType":"4g","downlink":9.2,"rtt":0,"serverDuration":95,"dbReadsTimeInMs":12,"dbConnsTimeInMs":21,"applicationHash":"9d11dbea5f4be3d4cc21f03a88dd11d8c8687422","experiments":[]}}
The reason of failure on
MDEV-19632is the same:the data type DATE does not get replaced to sql_mode independent name, e.g. MARIADB_DATE.