fixed bigquery system metrics e2e test (#18601)

This commit is contained in:
Imri Paran 2024-11-12 14:06:54 +01:00 committed by GitHub
parent 76984c97a2
commit 70c7880dfa
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -135,16 +135,16 @@ class BigqueryCliTest(CliCommonDB.TestSuite, SQACommonMethods):
( (
"local_bigquery.open-metadata-beta.exclude_me.orders", "local_bigquery.open-metadata-beta.exclude_me.orders",
[ [
SystemProfile(
timestamp=Timestamp(root=0),
operation=DmlOperationType.UPDATE,
rowsAffected=1,
),
SystemProfile( SystemProfile(
timestamp=Timestamp(root=0), timestamp=Timestamp(root=0),
operation=DmlOperationType.INSERT, operation=DmlOperationType.INSERT,
rowsAffected=2, rowsAffected=2,
), ),
SystemProfile(
timestamp=Timestamp(root=1),
operation=DmlOperationType.UPDATE,
rowsAffected=1,
),
], ],
) )
] ]