Skip to content

Fix EF DateTime sorting translation#9191

Merged
michaelstaib merged 4 commits intomainfrom
mst/issue-8905
Feb 24, 2026
Merged

Fix EF DateTime sorting translation#9191
michaelstaib merged 4 commits intomainfrom
mst/issue-8905

Conversation

@michaelstaib
Copy link
Copy Markdown
Member

@michaelstaib michaelstaib commented Feb 24, 2026

Fixes #8905

@github-actions
Copy link
Copy Markdown
Contributor

github-actions Bot commented Feb 24, 2026

Fusion Gateway Performance Results

Simple Composite Query

Req/s Err%
Constant (50 VUs) 6915.67 0.00%
Ramping (0-500-0 VUs) 7396.02 0.00%
Response Times & Query
Min Med Avg P90 P95 Max
Constant 0.59ms 5.98ms 7.09ms 11.03ms 15.52ms 178.65ms
Ramping 0.56ms 24.44ms 29.83ms 62.92ms 74.74ms 182.47ms
query TestQuery {
  topProducts(first: 5) {
    inStock
    name
    price
    shippingEstimate
    upc
    weight
    reviews {
      id
      body
      author {
        id
        username
        name
      }
    }
  }
}

Deep Recursion Query

Req/s Err%
Constant (50 VUs) 1286.95 0.00%
Ramping (0-500-0 VUs) 1350.37 0.00%
Response Times & Query
Min Med Avg P90 P95 Max
Constant 4.48ms 34.00ms 37.72ms 51.53ms 60.99ms 444.46ms
Ramping 1.85ms 135.47ms 157.38ms 337.31ms 381.21ms 705.71ms
query TestQuery {
  users {
    id
    username
    name
    reviews {
      id
      body
      product {
        inStock
        name
        price
        shippingEstimate
        upc
        weight
        reviews {
          id
          body
          author {
            id
            username
            name
            reviews {
              id
              body
              product {
                inStock
                name
                price
                shippingEstimate
                upc
                weight
              }
            }
          }
        }
      }
    }
  }
  topProducts(first: 5) {
    inStock
    name
    price
    shippingEstimate
    upc
    weight
    reviews {
      id
      body
      author {
        id
        username
        name
        reviews {
          id
          body
          product {
            inStock
            name
            price
            shippingEstimate
            upc
            weight
          }
        }
      }
    }
  }
}

Variable Batching Throughput

Req/s Err%
Constant (50 VUs) 23636.17 0.00%
Ramping (0-500-0 VUs) 18318.10 0.00%
Response Times & Query
Min Med Avg P90 P95 Max
Constant 0.08ms 1.72ms 2.07ms 3.99ms 4.82ms 45.01ms
Ramping 0.08ms 9.59ms 11.57ms 23.62ms 28.71ms 126.85ms
query TestQuery($upc: ID!, $price: Long!, $weight: Long!) {
  productByUpc(upc: $upc) {
    inStock
    shippingEstimate(weight: $weight, price: $price)
  }
}

Variables (5 sets batched per request)

[
  { "upc": "1", "price": 899, "weight": 100 },
  { "upc": "2", "price": 1299, "weight": 1000 },
  { "upc": "3", "price": 15, "weight": 20 },
  { "upc": "4", "price": 499, "weight": 100 },
  { "upc": "5", "price": 1299, "weight": 1000 }
]

Run 22373007246 • Commit ec56191 • Tue, 24 Feb 2026 23:35:24 GMT

@michaelstaib michaelstaib merged commit 10d1fb7 into main Feb 24, 2026
3 checks passed
@michaelstaib michaelstaib deleted the mst/issue-8905 branch February 24, 2026 22:34
@codecov
Copy link
Copy Markdown

codecov Bot commented Feb 25, 2026

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 0.00%. Comparing base (6a3b7a3) to head (f3ce718).
⚠️ Report is 804 commits behind head on main.

Additional details and impacted files
@@            Coverage Diff             @@
##             main   #9191       +/-   ##
==========================================
- Coverage   74.16%       0   -74.17%     
==========================================
  Files        2677       0     -2677     
  Lines      140790       0   -140790     
  Branches    16371       0    -16371     
==========================================
- Hits       104421       0   -104421     
+ Misses      30774       0    -30774     
+ Partials     5595       0     -5595     
Flag Coverage Δ
unittests ?

Flags with carried forward coverage won't be shown. Click here to find out more.

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

EF translation error when ordering by DateTime after projecting DateTimeOffset

1 participant