@@ -77,7 +77,7 @@ DECLARE
7777 BEGIN
7878
7979 for i in 1 ..3 loop
80- e := create_encrypted_json(i, ' b ' );
80+ e := create_encrypted_json(i, ' b3 ' );
8181
8282 PERFORM assert_result(
8383 format(' eql_v2_encrypted <> eql_v2_encrypted with blake3 index term %s of 3' , i),
@@ -86,7 +86,7 @@ DECLARE
8686 end loop;
8787
8888 -- remove the ore index term
89- e := create_encrypted_json(91347 , ' b ' );
89+ e := create_encrypted_json(91347 , ' b3 ' );
9090
9191 PERFORM assert_no_result(
9292 ' eql_v2_encrypted <> eql_v2_encrypted with no matching record' ,
@@ -107,15 +107,15 @@ DECLARE
107107 BEGIN
108108
109109 for i in 1 ..3 loop
110- e := create_encrypted_json(i, ' b ' );
110+ e := create_encrypted_json(i, ' b3 ' );
111111
112112 PERFORM assert_result(
113113 format(' eql_v2.neq(eql_v2_encrypted, eql_v2_encrypted) with unique index term %s of 3' , i),
114114 format(' SELECT e FROM encrypted WHERE eql_v2.neq(e, %L);' , e));
115115 end loop;
116116
117117 -- remove the ore index term
118- e := create_encrypted_json(91347 , ' b ' );
118+ e := create_encrypted_json(91347 , ' b3 ' );
119119
120120 PERFORM assert_no_result(
121121 ' eql_v2.neq(eql_v2_encrypted, eql_v2_encrypted) with no matching record' ,
@@ -137,7 +137,7 @@ DECLARE
137137 for i in 1 ..3 loop
138138
139139 -- remove the default
140- e := create_encrypted_json(i, ' b ' );
140+ e := create_encrypted_json(i, ' b3 ' );
141141
142142 PERFORM assert_result(
143143 format(' eql_v2_encrypted = jsonb with unique index term %s of 3' , i),
@@ -148,7 +148,7 @@ DECLARE
148148 format(' SELECT e FROM encrypted WHERE %L::jsonb = e' , e));
149149 end loop;
150150
151- e := create_encrypted_json(91347 , ' b ' );
151+ e := create_encrypted_json(91347 , ' b3 ' );
152152
153153 PERFORM assert_no_result(
154154 ' eql_v2_encrypted = jsonb with no matching record' ,
0 commit comments