(db *sqlx.DB)
| 22 | } |
| 23 | |
| 24 | func (postgresHelper) PostCreate(db *sqlx.DB) (*sqlx.DB, error) { |
| 25 | return db, nil |
| 26 | |
| 27 | } |
| 28 | func (postgresHelper) CheckTableExists(tx *sqlx.Tx, table string) (bool, error) { |
| 29 | query := tx.Rebind(`SELECT count(*) |
| 30 | FROM information_schema.TABLES |
nothing calls this directly
no outgoing calls
no test coverage detected