Skip to content

.Net: Implement SQL Server hybrid search#13512

Open
roji wants to merge 2 commits intomicrosoft:mainfrom
roji:SqlServerHybrid
Open

.Net: Implement SQL Server hybrid search#13512
roji wants to merge 2 commits intomicrosoft:mainfrom
roji:SqlServerHybrid

Conversation

@roji
Copy link
Member

@roji roji commented Feb 5, 2026

Closes #11080

@roji roji requested a review from a team as a code owner February 5, 2026 20:32
@moonbox3 moonbox3 added the .NET Issue or Pull requests regarding .NET code label Feb 5, 2026
@github-actions github-actions bot changed the title Implement SQL Server hybrid search .Net: Implement SQL Server hybrid search Feb 5, 2026
@roji roji enabled auto-merge February 6, 2026 07:09
Copy link
Member

@adamsitnik adamsitnik left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM, I had some comments, but none of them were blocking. Thank you @roji !

FROM sys.fulltext_indexes fi
JOIN sys.tables t ON fi.object_id = t.object_id
WHERE t.name = @tableName
AND fi.has_crawl_completed = 0";
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Just for my education: is this the recommended way of doing it? I am not a DB expert, so it just looks fishy to me ;P

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Anything in particular? :) The problem is that the creation of full-text indexes happens asynchronously, so we need to wait until they are done. This kind of thing is frequently a problem when writing tests that involve databases, unfortunately.

On the upside, this is only test infra code, so not very important.

@roji roji requested a review from adamsitnik February 6, 2026 19:29
@roji roji deployed to integration February 6, 2026 19:29 — with GitHub Actions Active
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

.NET Issue or Pull requests regarding .NET code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

.Net: [MEVD] [SQL Server] Implement hybrid search support

4 participants