()
| 317 | |
| 318 | #[test] |
| 319 | fn build_sql_as_of() { |
| 320 | let sql = build_graph_stats_sql(Some("social"), Some(1_700_000_000_000)); |
| 321 | assert_eq!( |
| 322 | sql, |
| 323 | "SHOW GRAPH STATS 'social' AS OF SYSTEM TIME 1700000000000" |
| 324 | ); |
| 325 | } |
| 326 | |
| 327 | #[test] |
| 328 | fn build_sql_tenant_wide_as_of() { |
nothing calls this directly
no test coverage detected