()
| 153 | } |
| 154 | |
| 155 | func createTestingMaxComputeDB() *DB { |
| 156 | db, e := OpenAndConnectDB(testingMaxComputeURL()) |
| 157 | assertNoErr(e) |
| 158 | // Note: We do not popularize the test data here intentionally since |
| 159 | // it will take up quite some time on MaxCompute. |
| 160 | return db |
| 161 | } |
| 162 | |
| 163 | // assertNoError prints the error if there is any in TestMain, which |
| 164 | // log doesn't work. |
no test coverage detected