Skip to content

Commit d79033b

Browse files
authored
Merge pull request #496 from nasa/495-fix-sadb-scripts-abm-size
[#495] fix abm_size on create_sadb.sql
2 parents b22a8b9 + cc26bee commit d79033b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/sa/sadb_mariadb_sql/create_sadb.sql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ CREATE TABLE IF NOT EXISTS security_associations_tm
5858
,acs_len SMALLINT NOT NULL DEFAULT 0
5959
,acs VARBINARY(4) NOT NULL DEFAULT X'00'
6060
,abm_len MEDIUMINT
61-
,abm VARBINARY(1024) NOT NULL DEFAULT X'0000FC0000FFFF000000000000000000000000' -- ABM_SIZE=1024
61+
,abm VARBINARY(1786) NOT NULL DEFAULT X'0000FC0000FFFF000000000000000000000000' -- ABM_SIZE=1786
6262
,arsn_len SMALLINT NOT NULL DEFAULT 0
6363
,arsn VARBINARY(20) NOT NULL DEFAULT X'0000000000000000000000000000000000000000' -- ARSN_SIZE=20 , TBD why so large...
6464
,arsnw SMALLINT NOT NULL DEFAULT 0 -- ARSNW_SIZE=1
@@ -88,7 +88,7 @@ CREATE TABLE IF NOT EXISTS security_associations_aos
8888
,acs_len SMALLINT NOT NULL DEFAULT 0
8989
,acs VARBINARY(4) NOT NULL DEFAULT X'00'
9090
,abm_len MEDIUMINT
91-
,abm VARBINARY(1024) NOT NULL DEFAULT X'0000FC0000FFFF000000000000000000000000' -- ABM_SIZE=1024
91+
,abm VARBINARY(1786) NOT NULL DEFAULT X'0000FC0000FFFF000000000000000000000000' -- ABM_SIZE=1786
9292
,arsn_len SMALLINT NOT NULL DEFAULT 0
9393
,arsn VARBINARY(20) NOT NULL DEFAULT X'0000000000000000000000000000000000000000' -- ARSN_SIZE=20 , TBD why so large...
9494
,arsnw SMALLINT NOT NULL DEFAULT 0 -- ARSNW_SIZE=1

0 commit comments

Comments
 (0)