Sha256: 1073b4d53e474e5a08bf2a0e22158bcff2233f11c28e26a3548543d226320d44

Contents?: true

Size: 601 Bytes

Versions: 12

Compression:

Stored size: 601 Bytes

Contents

$Header$

1. Parser test program

1.1 How to build
Parser test program builds with the following command.

  % make

"parser-test" file is created.

1.2 Running program
You passes a SQL statement to parser-test. If the program accepts the
statement, it outputs SQL generated from a parse tree.

  % ./parser-test "select 1"
  SELECT 1

If the program does not accept, it outputs an error.

  % ./parser-test "aaa"
  syntax error: aaa


2. Testing
2.1 How to test
You types the following command.

  % make test

If test is failed, you should check test.diff. Then please send
test.diff to developers.

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
prestogres-0.4.8 pgpool2/test/parser/README
prestogres-0.4.7 pgpool2/test/parser/README
prestogres-0.4.6 pgpool2/test/parser/README
prestogres-0.4.5 pgpool2/test/parser/README
prestogres-0.4.4 pgpool2/test/parser/README
prestogres-0.4.3 pgpool2/test/parser/README
prestogres-0.4.2 pgpool2/test/parser/README
prestogres-0.4.1 pgpool2/test/parser/README
prestogres-0.4.0 pgpool2/test/parser/README
prestogres-0.3.0 pgpool2/test/parser/README
prestogres-0.2.0 pgpool2/test/parser/README
prestogres-0.1.0 pgpool2/test/parser/README