Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
tudor-malene committed May 1, 2024
1 parent 17de35e commit 3ba2d96
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion go/enclave/storage/enclavedb/enclave_sql_db_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,13 @@ import (
)

var (
createKVTable = `create table if not exists keyvalue (ky varbinary(64) primary key, val mediumblob);`
createKVTable = `create table if not exists keyvalue
(
id INTEGER PRIMARY KEY AUTOINCREMENT,
ky binary(4),
ky_full varbinary(64),
val mediumblob NOT NULL
);`

key1 = hexutils.HexToBytes("0000000000000000000000000000000000000000000000000000000000000001")
key2 = hexutils.HexToBytes("0000000000000000000000000000000000000000000000000000000000000002")
Expand Down

0 comments on commit 3ba2d96

Please sign in to comment.