()
| 125 | |
| 126 | #[test] |
| 127 | fn empty_personalization_omits_clause() { |
| 128 | let seed = HashMap::new(); |
| 129 | let sql = build_pagerank_sql("social", Some(&seed), None, None).unwrap(); |
| 130 | assert_eq!(sql, "GRAPH ALGO PAGERANK ON 'social'"); |
| 131 | } |
| 132 | |
| 133 | #[test] |
| 134 | fn parse_rows_numeric_and_text_rank() { |
nothing calls this directly
no test coverage detected