1open 'clitest';
2create table persons (name    string,
3	              salary  int8,
4	              address string,
5                      weight  real8,
6	 	      subordinates array of reference to persons,
7                      blob array of int1);
8create index on persons.salary;
9create hash on persons.name;
10start server 'localhost:6100' 8
11