From d40df56acc524f8cddd536e9066c51aecadf4f30 Mon Sep 17 00:00:00 2001 From: Jacob Chapman <7908073+chapmanjacobd@users.noreply.github.com> Date: Tue, 30 Aug 2022 10:13:40 -0500 Subject: [PATCH] include docstring --- sqlite_utils/db.py | 1 + 1 file changed, 1 insertion(+) diff --git a/sqlite_utils/db.py b/sqlite_utils/db.py index 4c6c0e2..27c46b0 100644 --- a/sqlite_utils/db.py +++ b/sqlite_utils/db.py @@ -2386,6 +2386,7 @@ class Table(Queryable): :param limit: SQL limit :param offset: SQL offset :param where: Extra SQL fragment for the WHERE clause + :param include_rank: Select the search rank column in the final query """ # Pick names for table and rank column that don't clash original = "original_" if self.name == "original" else "original"