EdgelessDB is a MySQL-compatible database for confidential computing. It runs entirely inside a secure enclave and comes with advanced features for collaboration, recovery, and access control.
CREATE DATABASE test;
USE test;
CREATE TABLE `test` (
`test` int
);
INSERT INTO `test` (`test`) VALUES (1);
ALTER TABLE `test` ADD INDEX `idx_test` (`test`);
I followed https://docs.edgeless.systems/edgelessdb/#/getting-started/quickstart-sgx to set up a simple container. After successfully connecting, the following SQL statements will cause a coredump:
Without the
INSERT
, everything works fine.