Skip to content

Commit 0325f36

Browse files
committed
Added test case for hdbcli
1 parent 817237c commit 0325f36

File tree

3 files changed

+11
-0
lines changed

3 files changed

+11
-0
lines changed

python/ql/test/library-tests/frameworks/hdbcli/ConceptsTest.expected

Whitespace-only changes.
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
import python
2+
import experimental.meta.ConceptsTest
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
from hdbcli import dbapi
2+
3+
conn = dbapi.connect(address="hostname", port=300, user="username", password="password")
4+
cursor = conn.cursor()
5+
6+
cursor.execute("some sql", (42,)) # $ MISSING: getSql="some sql"
7+
cursor.executemany("some sql", (42,)) # $ MISSING: getSql="some sql"
8+
9+
cursor.close()

0 commit comments

Comments
 (0)