hello -
first off, THANK YOU for your patience with me. it appears when switching from 10.5.13 to 10.5.22, there is a new rule being enforced that was not previously enforced.
i have switched back & forth between 5.13 and 5.22, and somehow the error does not show up in 5.13. the error of course is pure carelessness on my part, but i am still surprised this error was not caught *much *earlier.
my installation instructions:
/home/mark/mariadb_repo_setup --mariadb-server-version="mariadb-10.5.22" ; dnf -y install mariadb-server ; systemctl start mariadb.service ;
mariadb --verbose < ./myTestScript.sql ; ## shows error
systemctl stop mariadb.service ; dnf --assumeyes remove mariadb-server ;
/home/mark/mariadb_repo_setup --mariadb-server-version="mariadb-10.5.13" ; dnf -y install mariadb-server ; systemctl start mariadb.service ;
mariadb --verbose < ./myTestScript.sql ; ## does NOT show error!
./myTestScript.sql below:
DROP DATABASE IF EXISTS comptonTransAnlys ;
CREATE DATABASE comptonTransAnlys;
USE comptonTransAnlys ;
– MariaDB dump 10.19 Distrib 10.5.13-MariaDB, for Linux (x86_64)
–
-- Host: localhost Database: comptonTransAnlys
– ------------------------------------------------------
– Server version 10.5.13-MariaDB
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
–
-- Table structure for table `stimwordPosition`
–
DROP TABLE IF EXISTS `stimwordPosition`;
CREATE TABLE `stimwordPosition` (
`stimwordPositionAutoIncr` mediumint(10) NOT NULL,
PRIMARY KEY (`stimwordPositionAutoIncr`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
–
-- Table structure for table `clientStimword`
–
DROP TABLE IF EXISTS `clientStimword`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `clientStimword` (
`stimwordPositionAutoIncr` mediumint(10) NOT NULL,
`clientStimwordAutoIncr` int(10) unsigned NOT NULL AUTO_INCREMENT,
`createdAt` timestamp NULL DEFAULT NULL,
`updatedAt` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`clientStimwordAutoIncr`),
KEY `stimwordPositionAutoIncr_2_clientStimword` (`stimwordPositionAutoIncr`),
CONSTRAINT `stimwordPositionAutoIncr_2_clientStimword` FOREIGN KEY (`stimwordPositionAutoIncr`) REFERENCES `stimwordPosition` (`stimwordPositionAutoIncr`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=8288165 DEFAULT CHARSET=latin1;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
– Dump completed on 2023-11-16 15:25:55
SET FOREIGN_KEY_CHECKS=0;
/*this can be fixed by changing UNSIGNED to SIGNED! */
ALTER TABLE `clientStimword` MODIFY COLUMN `stimwordPositionAutoIncr` MEDIUMINT(10) UNSIGNED NOT NULL AFTER `updatedAt` ;
SET FOREIGN_KEY_CHECKS=1 ;
Once you have a chance to post a self-contained test case (starting with CREATE TABLE), I should be able to help with an alternative solution.
For the record,
MDEV-15562allows the column list to be reordered without rebuilding the table. Nothing will really change in the storage format.