Release 0.13.2

This commit is contained in:
Cameron Sparr
2016-08-02 18:26:47 +01:00
parent e103923430
commit 359d617b8f
2 changed files with 11 additions and 11 deletions

View File

@@ -147,7 +147,7 @@ func (i *InfluxDB) Connect() error {
func createDatabase(c client.Client, database string) error {
// Create Database if it doesn't exist
_, err := c.Query(client.Query{
Command: fmt.Sprintf("CREATE DATABASE IF NOT EXISTS \"%s\"", database),
Command: fmt.Sprintf("CREATE DATABASE \"%s\"", database),
})
return err
}