@@ -321,7 +321,6 @@ async fn greater_than_or_equal_jsonb_gte_encrypted(pool: PgPool) -> Result<()> {
321321#[ sqlx:: test]
322322async fn selector_less_than_with_ore_cllw_u64_8 ( pool : PgPool ) -> Result < ( ) > {
323323 // Test: e->'selector' < term with ore_cllw_u64_8 index
324- // Source SQL: src/operators/<_test.sql (lines 20-50)
325324 //
326325 // Uses test data created by seed_encrypted_json() helper which creates:
327326 // - Three records with n=10, n=20, n=30
@@ -355,7 +354,6 @@ async fn selector_less_than_with_ore_cllw_u64_8(pool: PgPool) -> Result<()> {
355354#[ sqlx:: test]
356355async fn selector_less_than_with_ore_cllw_u64_8_fallback ( pool : PgPool ) -> Result < ( ) > {
357356 // Test: e->'selector' < term fallback when index missing
358- // Source SQL: src/operators/<_test.sql (lines 42-48)
359357 //
360358 // Tests that comparison falls back to JSONB literal comparison
361359 // when the requested index type is not present on the selector
@@ -387,7 +385,6 @@ async fn selector_less_than_with_ore_cllw_u64_8_fallback(pool: PgPool) -> Result
387385#[ sqlx:: test]
388386async fn selector_less_than_with_ore_cllw_var_8 ( pool : PgPool ) -> Result < ( ) > {
389387 // Test: e->'selector' < term with ore_cllw_var_8 index
390- // Source SQL: src/operators/<_test.sql (lines 66-95)
391388 //
392389 // STE vec test data has ore_cllw_var_8 on $.hello selector (a7cea93975ed8c01f861ccb6bd082784)
393390 // Extract $.hello from ste_vec id=3 and compare
@@ -419,7 +416,6 @@ async fn selector_less_than_with_ore_cllw_var_8(pool: PgPool) -> Result<()> {
419416#[ sqlx:: test]
420417async fn selector_greater_than_with_ore_cllw_u64_8 ( pool : PgPool ) -> Result < ( ) > {
421418 // Test: e->'selector' > term with ore_cllw_u64_8 index
422- // Source SQL: src/operators/>_test.sql (lines 20-50)
423419 //
424420 // Extract $.n from ste_vec id=2 (n=20 value) and find records > 20
425421
@@ -450,7 +446,6 @@ async fn selector_greater_than_with_ore_cllw_u64_8(pool: PgPool) -> Result<()> {
450446#[ sqlx:: test]
451447async fn selector_greater_than_with_ore_cllw_u64_8_fallback ( pool : PgPool ) -> Result < ( ) > {
452448 // Test: e->'selector' > term fallback when index missing
453- // Source SQL: src/operators/>_test.sql (lines 42-48)
454449
455450 sqlx:: query ( "SELECT create_table_with_encrypted()" )
456451 . execute ( & pool)
@@ -478,7 +473,6 @@ async fn selector_greater_than_with_ore_cllw_u64_8_fallback(pool: PgPool) -> Res
478473#[ sqlx:: test]
479474async fn selector_greater_than_with_ore_cllw_var_8 ( pool : PgPool ) -> Result < ( ) > {
480475 // Test: e->'selector' > term with ore_cllw_var_8 index
481- // Source SQL: src/operators/>_test.sql (lines 66-96)
482476
483477 sqlx:: query ( "SELECT create_table_with_encrypted()" )
484478 . execute ( & pool)
@@ -507,7 +501,6 @@ async fn selector_greater_than_with_ore_cllw_var_8(pool: PgPool) -> Result<()> {
507501#[ sqlx:: test]
508502async fn selector_greater_than_with_ore_cllw_var_8_fallback ( pool : PgPool ) -> Result < ( ) > {
509503 // Test: e->'selector' > term fallback to JSONB comparison
510- // Source SQL: src/operators/>_test.sql (lines 88-94)
511504 //
512505 // Tests fallback when selector doesn't have ore_cllw_var_8
513506
@@ -540,7 +533,6 @@ async fn selector_greater_than_with_ore_cllw_var_8_fallback(pool: PgPool) -> Res
540533#[ sqlx:: test]
541534async fn selector_less_than_or_equal_with_ore_cllw_u64_8 ( pool : PgPool ) -> Result < ( ) > {
542535 // Test: e->'selector' <= term with ore_cllw_u64_8 index
543- // Source SQL: src/operators/<=_ore_cllw_u64_8_test.sql (lines 23-53)
544536 //
545537 // Extract $.n from ste_vec id=2 (n=20) and find records <= 20
546538
@@ -571,7 +563,6 @@ async fn selector_less_than_or_equal_with_ore_cllw_u64_8(pool: PgPool) -> Result
571563#[ sqlx:: test]
572564async fn selector_less_than_or_equal_with_ore_cllw_u64_8_fallback ( pool : PgPool ) -> Result < ( ) > {
573565 // Test: e->'selector' <= term fallback when index missing
574- // Source SQL: src/operators/<=_ore_cllw_u64_8_test.sql (lines 45-51)
575566
576567 sqlx:: query ( "SELECT create_table_with_encrypted()" )
577568 . execute ( & pool)
@@ -601,7 +592,6 @@ async fn selector_less_than_or_equal_with_ore_cllw_u64_8_fallback(pool: PgPool)
601592#[ sqlx:: test]
602593async fn selector_greater_than_or_equal_with_ore_cllw_u64_8 ( pool : PgPool ) -> Result < ( ) > {
603594 // Test: e->'selector' >= term with ore_cllw_u64_8 index
604- // Source SQL: src/operators/>=_test.sql (lines 20-50)
605595 //
606596 // Extract $.n from ste_vec id=1 (n=10) and find records >= 10
607597
@@ -632,7 +622,6 @@ async fn selector_greater_than_or_equal_with_ore_cllw_u64_8(pool: PgPool) -> Res
632622#[ sqlx:: test]
633623async fn selector_greater_than_or_equal_with_ore_cllw_u64_8_fallback ( pool : PgPool ) -> Result < ( ) > {
634624 // Test: e->'selector' >= term fallback when index missing
635- // Source SQL: src/operators/>=_test.sql (lines 42-48)
636625
637626 sqlx:: query ( "SELECT create_table_with_encrypted()" )
638627 . execute ( & pool)
@@ -660,7 +649,6 @@ async fn selector_greater_than_or_equal_with_ore_cllw_u64_8_fallback(pool: PgPoo
660649#[ sqlx:: test]
661650async fn selector_greater_than_or_equal_with_ore_cllw_var_8 ( pool : PgPool ) -> Result < ( ) > {
662651 // Test: e->'selector' >= term with ore_cllw_var_8 index
663- // Source SQL: src/operators/>=_test.sql (lines 66-96)
664652
665653 sqlx:: query ( "SELECT create_table_with_encrypted()" )
666654 . execute ( & pool)
@@ -689,7 +677,6 @@ async fn selector_greater_than_or_equal_with_ore_cllw_var_8(pool: PgPool) -> Res
689677#[ sqlx:: test]
690678async fn selector_greater_than_or_equal_with_ore_cllw_var_8_fallback ( pool : PgPool ) -> Result < ( ) > {
691679 // Test: e->'selector' >= term fallback to JSONB comparison
692- // Source SQL: src/operators/>=_test.sql (lines 88-94)
693680
694681 sqlx:: query ( "SELECT create_table_with_encrypted()" )
695682 . execute ( & pool)
0 commit comments