| 1 | pub(crate) struct SqlQueryFactory { |
| 2 | event_table: String, |
| 3 | select_events: String, |
| 4 | insert_event: String, |
| 5 | all_events: String, |
| 6 | insert_snapshot: String, |
| 7 | update_snapshot: String, |
| 8 | select_snapshot: String, |
| 9 | } |
| 10 | |
| 11 | impl SqlQueryFactory { |
| 12 | pub fn new(event_table: &str, snapshot_table: &str) -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…