~drizzle-trunk/drizzle/development

1014.5.5 by Lee Bieber
add tests for hello_world plugin and add target in tests/Makefile to run all plugin tests
1
SELECT hello_word;
2
ERROR 42S22: Unknown column 'hello_word' in 'field list'
3
SELECT hello_world(12345);
4
hello_world(12345)
5
Hello World!
6
SELECT hello_world("");
7
hello_world("")
8
Hello World!
9
SELECT hello_world(string);
10
ERROR 42S22: Unknown column 'string' in 'field list'
11
SELECT hello_world("string");
12
hello_world("string")
13
Hello World!
14
SELECT hello_world();
15
hello_world()
16
Hello World!