From ab38b7511bad8cc03a67f0d43e7169e6dfcac9fa Mon Sep 17 00:00:00 2001 From: Monty Date: Mon, 15 Apr 2019 18:16:02 +0300 Subject: MDEV-17841 S3 storage engine A read-only storage engine that stores it's data in (aws) S3 To store data in S3 one could use ALTER TABLE: ALTER TABLE table_name ENGINE=S3 libmarias3 integration done by Sergei Golubchik libmarias3 created by Andrew Hutchings --- mysql-test/suite/s3/suite.pm | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 mysql-test/suite/s3/suite.pm (limited to 'mysql-test/suite/s3/suite.pm') diff --git a/mysql-test/suite/s3/suite.pm b/mysql-test/suite/s3/suite.pm new file mode 100644 index 00000000000..5bf1559ae97 --- /dev/null +++ b/mysql-test/suite/s3/suite.pm @@ -0,0 +1,8 @@ +package My::Suite::S3; + +@ISA = qw(My::Suite); + +return "Need S3 engine" unless $::mysqld_variables{'s3'} eq "ON"; + +bless { }; + -- cgit v1.2.1