fix test, as filtering no longer emits experimental warning
This commit is contained in:
parent
fb7c32bc0e
commit
2ea551b6a3
@ -346,12 +346,11 @@ def test_get_partition_expression_warnings_and_exceptions():
|
|||||||
|
|
||||||
kwargs = {"DatabaseName": database_name, "TableName": table_name}
|
kwargs = {"DatabaseName": database_name, "TableName": table_name}
|
||||||
|
|
||||||
with pytest.warns(match="Expression filtering is experimental"):
|
response = client.get_partitions(**kwargs, Expression="string_col = 'test'")
|
||||||
response = client.get_partitions(**kwargs, Expression="string_col = 'test'")
|
partitions = response["Partitions"]
|
||||||
partitions = response["Partitions"]
|
partitions.should.have.length_of(1)
|
||||||
partitions.should.have.length_of(1)
|
partition = partitions[0]
|
||||||
partition = partitions[0]
|
partition["Values"].should.equal(["test", "int", "3.14"])
|
||||||
partition["Values"].should.equal(["test", "int", "3.14"])
|
|
||||||
|
|
||||||
with pytest.raises(ClientError) as exc:
|
with pytest.raises(ClientError) as exc:
|
||||||
client.get_partitions(**kwargs, Expression="float_col = 3.14")
|
client.get_partitions(**kwargs, Expression="float_col = 3.14")
|
||||||
|
Loading…
Reference in New Issue
Block a user