quote_schema_table seems to make Sequel want to do things with schemas
and tables that look like this:
"RAW_SCHEMA"."USERS"
this doesn't seem to be valid in postgres. What I want is just
"RAW_SCHEMA.USERS".
I've overridden this in my own Database class for creating tables:
class Database
def quote_schema_table(table)
schema, table = schema_and_table(table)
"#{"#{schema}." if schema}#{table}"
end
end
However, sequel is still trying to do inserts into "RAW_SCHEMA"."USERS"
is there another place I need to override quote_schema_table? Or is
there another function I need to change?
I'm using postgres, jdbc, jruby, and sequel.
Rolf
--
You received this message because you are subscribed to the Google Groups
"sequel-talk" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/sequel-talk?hl=en.