> -----Original Message-----
> From: Adriano dos Santos Fernandes [mailto:adrian...@gmail.com] 
> Sent: Martes, 01 de Julio de 2014 22:22
> 
> 
> Frank,
> 
> Please don't mess with obj.h for ISQL support.
> 
> I think you should do it different, for example, passing extra
> parameters instead of the new constants.
> 
> 
> Adriano

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:

SQL> create domain d int check (value > gen_id(g, 3));
Statement failed, SQLSTATE = 42000
invalid request BLR at offset 15
-generator G is not defined

I think generators should continue preceding domains when extracting
scripts. Maybe I will have more to say when I'm able to digest all the
commits.

C.


------------------------------------------------------------------------------
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