Am 02.07.2014 04:50, schrieb Claudio Valderrama C.:
>
> I have my reservations about the extraction order, but since I didn't try, I
> didn't voice my concern yet. This was the old order:
>               list_functions();
>               list_generators();
>               list_domains(default_char_set_id);
>
> This is the new order... I mean the isql extraction order, not the "new
> world order":
>
>               list_domains(default_char_set_id);
>               list_generators();
>               list_functions_legacy();
>               list_functions_ods12_headers();
>
> Why is it necessary to extract domains before generators? Domains can depend
> on generators, but generators don't depend on anything. This is a silly
> example, but it's allowed by our syntax:


You are right, my actual version looks like:

                 list_create_db();
                list_filters();
                list_charsets();
                list_collations();
                list_generators();
                list_domains(default_char_set_id);
                list_all_tables(flag, default_char_set_id);
                list_functions_legacy();
                list_functions_ods12_headers();
                list_procedure_headers();
                list_package_headers();
                list_all_computed(flag, default_char_set_id);
                list_indexes();
                list_foreign();
                list_views();
                list_check();
                list_exceptions();
                listDomainConstraints();
                list_all_triggers();
                list_functions_ods12_bodies();
                list_procedure_bodies();
                list_package_bodies();
                list_all_grants();
                SHOW_maps(true, "");
                SHOW_comments(false); // Let's make this an option later
I will commit it as soon as my final tests are done.

fsg

------------------------------------------------------------------------------
Open source business process management suite built on Java and Eclipse
Turn processes into business applications with Bonita BPM Community Edition
Quickly connect people, data, and systems into organized workflows
Winner of BOSSIE, CODIE, OW2 and Gartner awards
http://p.sf.net/sfu/Bonitasoft
Firebird-Devel mailing list, web interface at 
https://lists.sourceforge.net/lists/listinfo/firebird-devel

Reply via email to