()
| 4118 | """ |
| 4119 | |
| 4120 | def select(): |
| 4121 | with c.sql_cursor() as cursor: |
| 4122 | # This should hang instantly as the timestamp is far in the future, |
| 4123 | # until the cluster is dropped |
| 4124 | cursor.execute("SELECT * FROM counter_tbl AS OF 18446744073709551615") |
| 4125 | |
| 4126 | def subscribe(): |
| 4127 | cursor = c.sql_cursor() |
no test coverage detected