perl-rethinkdb
perl-rethinkdb copied to clipboard
`db->create` & `table->create` appear to use `test` database
r->db('foo')->create->run;
print Dumper r->db('foo')->table('entities')->create->run;
Responds with 'Database
testdoes not exist.'
😞
I have a few databases, including test... when I ran your sample above, it created database foo
, but then it created the table in the database I passed to default_db() at connection time.
Hope that helps!
Dan.