@@ -606,6 +606,9 @@ def test_where_with_not_expr(self, arkiv_client_http: Arkiv) -> None:
606606 assert result .attributes ["age" ] >= 18
607607 assert result .attributes ["status" ] != "banned"
608608
609+ @pytest .mark .skip (
610+ reason = "Skipping order by tests for now as we miss order support in the node"
611+ )
609612 def test_order_by_int_asc (self , arkiv_client_http : Arkiv ) -> None :
610613 """Test .order_by() with IntSort ascending."""
611614 batch_id , _ = create_test_entities (
@@ -624,6 +627,9 @@ def test_order_by_int_asc(self, arkiv_client_http: Arkiv) -> None:
624627 # Each sequence value appears twice (once per name)
625628 assert sequences == [1 , 1 , 2 , 2 , 3 , 3 ]
626629
630+ @pytest .mark .skip (
631+ reason = "Skipping order by tests for now as we miss order support in the node"
632+ )
627633 def test_order_by_int_desc (self , arkiv_client_http : Arkiv ) -> None :
628634 """Test .order_by() with IntSort descending."""
629635 batch_id , _ = create_test_entities (
@@ -642,6 +648,9 @@ def test_order_by_int_desc(self, arkiv_client_http: Arkiv) -> None:
642648 # Each sequence value appears twice (once per name)
643649 assert sequences == [3 , 3 , 2 , 2 , 1 , 1 ]
644650
651+ @pytest .mark .skip (
652+ reason = "Skipping order by tests for now as we miss order support in the node"
653+ )
645654 def test_order_by_str_asc (self , arkiv_client_http : Arkiv ) -> None :
646655 """Test .order_by() with StrSort ascending."""
647656 batch_id , _ = create_test_entities (arkiv_client_http , 3 ) # 3 names x 3 seq = 9
@@ -658,6 +667,9 @@ def test_order_by_str_asc(self, arkiv_client_http: Arkiv) -> None:
658667 # Each name appears 3 times (once per sequence)
659668 assert names == ["name_1" ] * 3 + ["name_2" ] * 3 + ["name_3" ] * 3
660669
670+ @pytest .mark .skip (
671+ reason = "Skipping order by tests for now as we miss order support in the node"
672+ )
661673 def test_order_by_str_desc (self , arkiv_client_http : Arkiv ) -> None :
662674 """Test .order_by() with StrSort descending."""
663675 batch_id , _ = create_test_entities (arkiv_client_http , 3 ) # 3 names x 3 seq = 9
@@ -674,6 +686,9 @@ def test_order_by_str_desc(self, arkiv_client_http: Arkiv) -> None:
674686 # Each name appears 3 times (once per sequence), descending order
675687 assert names == ["name_3" ] * 3 + ["name_2" ] * 3 + ["name_1" ] * 3
676688
689+ @pytest .mark .skip (
690+ reason = "Skipping order by tests for now as we miss order support in the node"
691+ )
677692 def test_complex_where_with_multiple_order_by (
678693 self , arkiv_client_http : Arkiv
679694 ) -> None :
@@ -772,6 +787,9 @@ def test_limit(self, arkiv_client_http: Arkiv) -> None:
772787
773788 assert len (results ) == 5
774789
790+ @pytest .mark .skip (
791+ reason = "Skipping order by tests for now as we miss order support in the node"
792+ )
775793 def test_limit_with_order_by (self , arkiv_client_http : Arkiv ) -> None :
776794 """Test .limit() with ORDER BY returns top N sorted results."""
777795 batch_id , _ = create_test_entities (arkiv_client_http , 3 ) # 3 names x 3 seq = 9
0 commit comments