You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fmt.Printf("Table `%s` has %d rows. Test passed! \n", table, count)
104
102
} else {
105
-
fmt.Printf("Some kind of error occurred while running the count query for the %s table. We think it has %d rows. Test failed. \n", table, count)
103
+
fmt.Printf("Some kind of error occurred while running the count query for the %[1]s table. We think it has %[2]d rows. Test failed. Here's some additional details: \n Query results. If this number is greater than 0, then there is probably an issue in the comparison: %[3]s \n Variable type for the count. This should be INT64: %[4]s \n", table, count, op, count_kind)
106
104
}
107
105
}
108
106
}
109
-
110
107
test_tables()
111
108
112
109
// Assert BigQuery connection to Vertex GenAI was successfully created and works as expected
fmt.Printf("LLM table has %d rows. Test passed! \n", llm_count)
125
120
} else {
126
-
fmt.Printf("Some kind of error occurred while running the count query for the LLM table. We think it has %d rows. Test failed. \n", llm_count)
121
+
fmt.Printf("Some kind of error occurred while running the llm_count query. We think it has %[1]d rows. Here's some additional details: \n Query results. If this number is greater than 0, then there is probably an issue in the comparison: %[2]s \n Variable type for the count. This should be INT64: %[3]s \n", llm_count, llm_op, count_llm_kind)
0 commit comments