Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/encrypted/aggregates.sql
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ CREATE FUNCTION eql_v2.min(a eql_v2_encrypted, b eql_v2_encrypted)
STRICT
AS $$
BEGIN
IF eql_v2.ore_block_u64_8_256(a) < eql_v2.ore_block_u64_8_256(b) THEN
IF a < b THEN
RETURN a;
ELSE
RETURN b;
Expand All @@ -30,7 +30,7 @@ RETURNS eql_v2_encrypted
STRICT
AS $$
BEGIN
IF eql_v2.ore_block_u64_8_256(a) > eql_v2.ore_block_u64_8_256(b) THEN
IF a > b THEN
RETURN a;
ELSE
RETURN b;
Expand Down
1 change: 0 additions & 1 deletion src/operators/order_by.sql
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
-- REQUIRE: src/ore_block_u64_8_256/operators.sql
-- REQUIRE: src/ore_cllw_u64_8/types.sql
-- REQUIRE: src/ore_cllw_u64_8/functions.sql
-- REQUIRE: src/ore_cllw_u64_8/operators.sql

-- order_by function for ordering when operators are not available.
--
Expand Down
Loading