----------------------------
Quick Install Instructions
----------------------------
Before you begin, make sure you have installed Java 1.4.2 or higher
and that Java is listed first in your PATH. For example, add the 
following line to your .bash_profile, .bashrc, or /etc/profile:

set PATH=/usr/java/j2sdk1.4.2_08/bin/:$PATH
export PATH

1. Edit path.sh to point to the installed DeepGreen distribution
2. make

Note that an error message is expected after executing the data generator
program, similar to:
        ./generator seedfile.txt 1000000 > dbdata.txt
        make[1]: *** [all] Error 64

The process should continue to successful data loading and query execution.

The last lines of example output should look like this:
----------------------------------------------------------------------------
TOTALS:

- Time          : 20.364 secs
- Rows Read     : 1000000 (non blank)
- Rows Loaded   : 1000000
- Bytes Loaded  : 142621213
- Load rate     : 6.679149 Mbytes/sec
- Failed Batches: 0
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=


No more control commands.

The result from this next query should be 1000000

time psql -p 5432 dgtestdb -c "select count(*) from IVP.bigtable1"
  count  
  ---------
   1000000
   (1 row)



   real    0m3.207s
   user    0m0.004s
   sys     0m0.004s
----------------------------------------------------------------------------
