perseas / Pyrseas

Provides utilities for Postgres database schema versioning.
https://perseas.github.io/
BSD 3-Clause "New" or "Revised" License
395 stars 67 forks source link

split_schema_obj should properly split a function within a schema #165

Open jmafc opened 7 years ago

jmafc commented 7 years ago

This can be seen in tests.dbobject.test_eventtrig.EventTriggerToSqlTestCase test_create_event_trigger_func_schema. The function s1.f1() is split into ('public, 's1.f1', '') instead of ('s1', 'f1', ''). This test has been disabled until a fix is available.