Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
czpmango committed Dec 23, 2021
1 parent e271614 commit f64efb2
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions tests/test_parameter.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,11 @@ def test_parameter(self):
# get session from the pool
client = self.pool.get_session('root', 'nebula')
assert client is not None
resp = client.execute_parameter(
'USE parameter_test',
self.params,
)
assert resp.is_succeeded()
# test basic parameter
resp = client.execute_parameter(
'RETURN abs($p1)+3 AS col1, (toBoolean($p2) and false) AS col2, toLower($p3)+1 AS col3',
Expand Down

0 comments on commit f64efb2

Please sign in to comment.