Skip to content

Instantly share code, notes, and snippets.

@chocobn69
Created September 21, 2018 09:07
Show Gist options
  • Save chocobn69/59500b898b15802aa65fc7f3bd483ad1 to your computer and use it in GitHub Desktop.
Save chocobn69/59500b898b15802aa65fc7f3bd483ad1 to your computer and use it in GitHub Desktop.
from django.contrib.postgres.search import SearchQuery, SearchVector
combined_search_queries = SearchQuery('test')
for _ in range(200):
combined_search_queries |= SearchQuery('test')
print(combined_search_queries)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment