ramsql
ramsql copied to clipboard
Implement SCHEMA
Was just giving this a try for testing a project and our schema creation sql looks something like:
CREATE SCHEMA foo;
CREATE TABLE "foo"."bar"
{
...
}
...
ramsql seems to fail on both SCHEMA
and the compound table name, ie it wants to create table foo
and treats ."bar"
as incorrect.