We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c6a69e1 commit 701b935Copy full SHA for 701b935
python/ql/test/library-tests/frameworks/django/SqlExecution.py
@@ -27,3 +27,6 @@ def test_model():
27
28
raw = RawSQL("so raw")
29
User.objects.annotate(val=raw) # $getSql="so raw"
30
+
31
+ # chaining QuerySet calls
32
+ User.objects.using("db-name").exclude(username="admin").extra("some sql") # $ MISSING: getSql="some sql"
0 commit comments