diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2023-07-11 18:29:55 +0200 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2023-07-11 18:32:28 +0200 |
commit | b689a85b9df4c4fa64f243e27c7498693d0496a4 (patch) | |
tree | 94f5405c1738d3337ed0af02e513650d1e0d0457 /test/py/lib/db.py | |
parent | sqlite: rename SQL schema variables (diff) | |
download | cimple-b689a85b9df4c4fa64f243e27c7498693d0496a4.tar.gz cimple-b689a85b9df4c4fa64f243e27c7498693d0496a4.zip |
sqlite: make some identifiers more readable
Diffstat (limited to 'test/py/lib/db.py')
-rw-r--r-- | test/py/lib/db.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/py/lib/db.py b/test/py/lib/db.py index 9fddbf5..133a627 100644 --- a/test/py/lib/db.py +++ b/test/py/lib/db.py @@ -26,5 +26,5 @@ class Database: def get_all_runs(self): with self.get_cursor() as cur: - cur.execute('SELECT * FROM cimple_runs_readable') + cur.execute('SELECT * FROM cimple_runs_view') return cur.fetchall() |