Requires binding 2 parameters
()
| 54 | } |
| 55 | /// Requires binding 2 parameters |
| 56 | pub fn first() -> &'static str { |
| 57 | r#"SELECT |
| 58 | order_key |
| 59 | FROM |
| 60 | ceramic_one_peer |
| 61 | WHERE |
| 62 | order_key >= $1 AND order_key < $2 |
| 63 | ORDER BY |
| 64 | order_key ASC |
| 65 | LIMIT |
| 66 | 1;"# |
| 67 | } |
| 68 | /// Requires binding 3 parameters |
| 69 | pub fn middle() -> &'static str { |
| 70 | r#"SELECT |
no outgoing calls