When using DB for PostgreSQL, I discovered that if a parameter of a query contains null character, there is a pattern in which subsequent strings are lost.
### how to reproduce
#### Prepare the environment
```
$ rails new postgresql_rails -TB --database=postgresql
$ cd postgresql_rails
$ bund…