Skip to content

Commit

Permalink
changin the storage-engine to default
Browse files Browse the repository at this point in the history
  • Loading branch information
parmisnaddaf committed Nov 27, 2023
1 parent 7a38d15 commit 67f00b0
Show file tree
Hide file tree
Showing 39 changed files with 2,463 additions and 878 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
/* Create the tables necessary for generating the lattice. */
SET storage_engine=INNODB;
-- SET default_storage_engine=INNODB;

SET default_storage_engine = INNODB;

CREATE TABLE lattice_membership (
name VARCHAR(398),
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
/* Create the tables necessary for generating the lattice. */
SET storage_engine=MEMORY;
-- SET storage_engine=MEMORY;
SET default_storage_engine = INNODB;

CREATE TABLE lattice_membership (
name VARCHAR(398),
Expand Down
Loading

0 comments on commit 67f00b0

Please sign in to comment.