mirror of
https://github.com/github/codeql.git
synced 2025-12-17 01:03:14 +01:00
Added test case for hdbcli
This commit is contained in:
@@ -0,0 +1,2 @@
|
||||
import python
|
||||
import experimental.meta.ConceptsTest
|
||||
9
python/ql/test/library-tests/frameworks/hdbcli/pep249.py
Normal file
9
python/ql/test/library-tests/frameworks/hdbcli/pep249.py
Normal file
@@ -0,0 +1,9 @@
|
||||
from hdbcli import dbapi
|
||||
|
||||
conn = dbapi.connect(address="hostname", port=300, user="username", password="password")
|
||||
cursor = conn.cursor()
|
||||
|
||||
cursor.execute("some sql", (42,)) # $ MISSING: getSql="some sql"
|
||||
cursor.executemany("some sql", (42,)) # $ MISSING: getSql="some sql"
|
||||
|
||||
cursor.close()
|
||||
Reference in New Issue
Block a user