Skip to content

Add SQL search debugger tooling - #5812

Open
Robert Johnson (LTA-Thinking) wants to merge 2 commits into
sql-parser/service-organizationfrom
sql-parser/debugger
Open

Robert Johnson (LTA-Thinking) wants to merge 2 commits into
sql-parser/service-organizationfrom
sql-parser/debugger

Conversation

@LTA-Thinking

Copy link
Copy Markdown
Contributor

Description

Describe the changes in this PR.

Related issues

Addresses [issue #].

Testing

Describe how this change was tested.

FHIR Team Checklist

  • Update the title of the PR to be succinct and less than 65 characters
  • Add a milestone to the PR for the sprint that it is merged (i.e. add S47)
  • Tag the PR with the type of update: Bug, Build, Dependencies, Enhancement, New-Feature or Documentation
  • Tag the PR with Open source, Azure API for FHIR (CosmosDB or common code) or Azure Healthcare APIs (SQL or common code) to specify where this change is intended to be released.
  • Tag the PR with Schema Version backward compatible or Schema Version backward incompatible or Schema Version unchanged if this adds or updates Sql script which is/is not backward compatible with the code.
  • When changing or adding behavior, if your code modifies the system design or changes design assumptions, please create and include an ADR.
  • CI is green before merge Build Status
  • Review squash-merge requirements

Semver Change (docs)

Patch|Skip|Feature|Breaking (reason)

RB Johnson (He/Him) and others added 2 commits September 11, 2026 13:58
Provide an interactive parser debugger updated for .NET 10, Medino, and parameterized SQL output.

Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com>
Pre-seed deterministic model identifiers, make request-time lookups thread-safe, and support validated server continuation tokens.

Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com>
@LTA-Thinking
Robert Johnson (LTA-Thinking) added this pull request to stack #5813 September 11, 2026 21:40
@LTA-Thinking Robert Johnson (LTA-Thinking) changed the title sql parser/debugger Add SQL search debugger tooling Sep 11, 2026
Comment on lines +112 to +118
if (parameters.TryGetValue("_count", out var countValues) && countValues.Count > 0)
{
if (int.TryParse(countValues[0], out var count) && count > 0)
{
maxItemCount = count;
}
}

// Serve index.html at root
app.MapGet("/", () => Results.File(
Path.Combine(app.Environment.WebRootPath, "index.html"), "text/html"));
Comment on lines +50 to +53
catch (Exception ex)
{
return Results.Json(new { error = ex.Message, stackTrace = ex.StackTrace }, statusCode: 200);
}
Comment on lines +76 to +79
catch (Exception ex)
{
return Results.Json(new { error = ex.Message }, statusCode: 400);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants