Update datasette/utils/__init__.py

pull/2491/head
Saurabh Misra 2025-06-20 12:50:02 -07:00 zatwierdzone przez GitHub
rodzic e2944cbcc0
commit 0699579d56
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: B5690EEEBB952194
1 zmienionych plików z 0 dodań i 1 usunięć

Wyświetl plik

@ -593,7 +593,6 @@ def detect_spatialite(conn):
def detect_fts(conn, table):
"""Detect if table has a corresponding FTS virtual table and return it"""
# The SQL uses explicit parameters for table name matching for better escaping and performance.
sql = detect_fts_sql()
param = (table, table, table)
row = conn.execute(sql, param).fetchone()