浅风

Results 2 issues of 浅风

![image](https://user-images.githubusercontent.com/64266855/133784686-8b8b51a8-1d76-41ae-9b66-3fd831f63887.png) 我在自己的项目这样写会报空指针异常

```golang func run(dsn string) { // install the wrapped driver sql.Register("postgres-mw", sqlmw.Driver(pq.Driver{}, new(sqlInterceptor))) db, err := sql.Open("postgres-mw", dsn) ... } type sqlInterceptor struct { sqlmw.NullInterceptor } func (in *sqlInterceptor) StmtQueryContext(ctx...