-
Notifications
You must be signed in to change notification settings - Fork 3.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support binary columns with SQL Server FREETEXT/CONTAINS #24033
Conversation
I know adding stuff to Northwind would end badly. @maumar @smitpatel suggestions on where this test should live? GearsOfWar? |
I am not happy yet. Following 2 files needs similar update for docs. For testbase, @maumar is the boss! |
@smitpatel next task! |
CREATE FULLTEXT CATALOG GearsOfWar_FTC AS DEFAULT; | ||
CREATE FULLTEXT INDEX ON Missions (BriefingDocument TYPE COLUMN BriefingDocumentFileExtension) KEY INDEX PK_Missions; | ||
|
||
WAITFOR DELAY '00:00:03'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes. Unfortunately there is some asynchronous process here, so if we run the tests too quickly after creating the full text catalog/index, we get back empty resullts (not an error, which is what you get when the catalog/index aren't created at all). 😡 😡 😡
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM. @maumar to sign-off for test changes.
Closes #23921