/************************************************************/
/*                       longline                           */
/************************************************************/

/* :SUMMARY: parse medium and very long lines from .ace file
:PRIORITY: 1
:STATUS: ok
:FEATURE: 
even in (short) text fields the lenght limit is beyond 1MByte.
this test ensures that 1.000.000 chars can be put into a text field.
by this it also makes sure ACEDB can mangage objects of that size.
:HISTORY: 
:MODEL: 
:DATA: 
:RESULT: 
works in: ace35b, ace950620, ace950716,
          ace950829a4  -- now does not dump inner tags (here: Description)
          4.3h, but aquila reports a crash if limit stacksize is too small
fails in: ace33f 
However, make sure you set
limit stacksize 20000
in unix before calling this script
:SCRIPT: */
longline: dbinit wspec.igd-fred
  tace
    parse: do pparse $data/igd.longline.ace
    find: do Query find Sequence "gb:X53051"
             write
    show: do -e show
  exit

longl1MB: dbinit wspec.mini
  write: tace
     parse: do parse $data/mini.1MB_line.ace.gz
  exit

  read: tace
     find: do find N 1MB_line
     show: do -e show
  exit