I've got a postgres table whose fully qualified name is schema_name.table_name. I want to append to insert a row to table_name.
When I try
tableCollection, err := db.Collection("schema_name.table_name")
I get a "Collection does not exist." error
If I change it to
tableCollection, err := db.Collection("table_name")
and then try
_,err =tableCollection.Append(myStruct)
I get an error "pq: relation \"table_name\" does not exist"
So it seems that UpperIO doesn't like the schema name and postgres needs to have it. Is this a bug or is there something I'm missing?