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 c5922c6 commit dd372dfCopy full SHA for dd372df
spanner/tests/system/test_system.py
@@ -371,10 +371,11 @@ class TestSessionAPI(unittest.TestCase, _TestData):
371
BYTES_1 = b'Ymlu'
372
BYTES_2 = b'Ym9vdHM='
373
ALL_TYPES_ROWDATA = (
374
+ ([], False, None, None, 0.0, None, None, None),
375
([1], True, BYTES_1, SOME_DATE, 0.0, 19, u'dog', SOME_TIME),
376
([5, 10], True, BYTES_1, None, 1.25, 99, u'cat', None),
377
([], False, BYTES_2, None, float('inf'), 107, u'frog', None),
- ([], False, None, None, float('-inf'), 207, None, None),
378
+ ([3, None, 9], False, None, None, float('-inf'), 207, None, None),
379
([], False, None, None, float('nan'), 1207, None, None),
380
([], False, None, None, OTHER_NAN, 2000, None, NANO_TIME),
381
)
@@ -903,7 +904,7 @@ def test_execute_sql_w_query_param(self):
903
904
params={'lower': 0.0, 'upper': 1.0},
905
param_types={
906
'lower': Type(code=FLOAT64), 'upper': Type(code=FLOAT64)},
- expected=[(19,)],
907
+ expected=[(None,), (19,)],
908
909
910
# Find -inf
0 commit comments