最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

sql - Google Spanner: "SEARCH_NGRAMS cannot be used in transactional queries by default" error - Stack Overflo

programmeradmin0浏览0评论

I'm working with Google Spanner (MySQL) in a FastAPI application and encountering this error when trying to search for a column with search index on (as the docs):

status = StatusCode.INVALID_ARGUMENT details = "SEARCH_NGRAMS cannot be used in transactional queries by default." ... google.api_core.exceptions.InvalidArgument: 400 SEARCH_NGRAMS cannot be used in transactional queries by default.

Iam using Sqlalchemy, that's the query:

    query = '''
        SELECT
        *
        FROM 
        permission p
        WHERE
        1=1 AND SEARCH_NGRAMS(p.Tokens, "alpha")
    '''
        
    engine.execute(query)

Questions:

1- How can I use text search capabilities in Google Spanner within transactional contexts? 2- Is there a way to enable SEARCH_NGRAMS in transactional queries? 3- What are alternatives to SEARCH_NGRAMS for searching text in Google Spanner?

与本文相关的文章

发布评论

评论列表(0)

  1. 暂无评论