1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-08 11:22:35 +03:00

MDEV-35921: s3.mysqldump fails in buildbot

This is a fixup for MDEV-32250, introduced via
b24ecd7ca6, the test case was not recorded
given the new mariadb-dump format.
This commit is contained in:
Vicențiu Ciorbaru
2025-01-23 21:45:26 +02:00
committed by Vicențiu-Marian Ciorbaru
parent 89f5d28191
commit b8fa8b9b3d

View File

@@ -25,12 +25,14 @@ CREATE TABLE `t1` (
PRIMARY KEY (`pk`) PRIMARY KEY (`pk`)
) ENGINE=Aria DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_uca1400_ai_ci PAGE_CHECKSUM=1; ) ENGINE=Aria DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_uca1400_ai_ci PAGE_CHECKSUM=1;
/*!40101 SET character_set_client = @saved_cs_client */; /*!40101 SET character_set_client = @saved_cs_client */;
set autocommit=0;
INSERT INTO `t1` VALUES INSERT INTO `t1` VALUES
(1,1), (1,1),
(2,2), (2,2),
(3,3), (3,3),
(4,4); (4,4);
ALTER TABLE `t1` ENGINE=S3; ALTER TABLE `t1` ENGINE=S3;
commit;
##### #####
# mysqldump with --copy-s3-tables=1 XML # mysqldump with --copy-s3-tables=1 XML
### ###