On Tue, Jul 17, 2012 at 5:24 PM, Vinicius Santos <[email protected]> wrote: > Attached. > > I think the information "user@database ( server )" is important. > > I tested on Windows 7. > I'll test on Ubuntu tonight.
I have no idea how you managed to get that to compile on Windows: ./schema/edbSynonym.cpp: In member function ‘virtual wxString edbSynonym::GetTranslatedMessage(int) const’: ./schema/edbSynonym.cpp:33: error: invalid use of incomplete type ‘struct pgSchema’ ../pgadmin/include/utils/factory.h:31: error: forward declaration of ‘struct pgSchema’ ./schema/edbSynonym.cpp:37: error: invalid use of incomplete type ‘struct pgSchema’ ../pgadmin/include/utils/factory.h:31: error: forward declaration of ‘struct pgSchema’ make[3]: *** [edbSynonym.o] Error 1 make[3]: *** Waiting for unfinished jobs.... ./schema/pgCast.cpp: In member function ‘virtual wxString pgCast::GetTranslatedMessage(int) const’: ./schema/pgCast.cpp:38: error: invalid use of incomplete type ‘struct pgSchema’ ../pgadmin/include/utils/factory.h:31: error: forward declaration of ‘struct pgSchema’ ./schema/pgCast.cpp:42: error: invalid use of incomplete type ‘struct pgSchema’ ../pgadmin/include/utils/factory.h:31: error: forward declaration of ‘struct pgSchema’ make[3]: *** [pgCast.o] Error 1 Which is entirely expected as both public synonyms and casts are database level objects and thus don't have pgSchema as a parent class. -- Dave Page Blog: http://pgsnake.blogspot.com Twitter: @pgsnake EnterpriseDB UK: http://www.enterprisedb.com The Enterprise PostgreSQL Company -- Sent via pgadmin-hackers mailing list ([email protected]) To make changes to your subscription: http://www.postgresql.org/mailpref/pgadmin-hackers
