diff options
author | Bruce Momjian | 1998-03-30 17:28:21 +0000 |
---|---|---|
committer | Bruce Momjian | 1998-03-30 17:28:21 +0000 |
commit | 57b5966405fb6e237676acef55973c064ac65a2a (patch) | |
tree | d2397c1d3308e56cd33c5f2f607e26129106ed4a /src/test/bench | |
parent | 31c36102cab914f6664ee2db20c7732aeb51a02b (diff) |
The following uuencoded, gzip'd file will ...
1. Remove the char2, char4, char8 and char16 types from postgresql
2. Change references of char16 to name in the regression tests.
3. Rename the char16.sql regression test to name.sql. 4. Modify
the regression test scripts and outputs to match up.
Might require new regression.{SYSTEM} files...
Darren King
Diffstat (limited to 'src/test/bench')
-rw-r--r-- | src/test/bench/create.source | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/test/bench/create.source b/src/test/bench/create.source index 986ff3cf6c0..b75ed732a0c 100644 --- a/src/test/bench/create.source +++ b/src/test/bench/create.source @@ -1,6 +1,6 @@ -create table onek(unique1 int4,unique2 int4,two int4,four int4,ten int4,twenty int4, hundred int4,thousand int4,twothousand int4,fivethous int4,tenthous int4,odd int4, even int4,stringu1 char16,stringu2 char16,string4 char16); -create table tenk1 (unique1 int4,unique2 int4, two int4,four int4,ten int4,twenty int4,hundred int4,thousand int4,twothousand int4,fivethous int4,tenthous int4,odd int4,even int4,stringu1 char16,stringu2 char16,string4 char16); -create table tenk2 (unique1 int4, unique2 int4, two int4, four int4,ten int4, twenty int4, hundred int4, thousand int4, twothousand int4,fivethous int4, tenthous int4, odd int4, even int4,stringu1 char16,stringu2 char16, string4 char16); +create table onek(unique1 int4,unique2 int4,two int4,four int4,ten int4,twenty int4, hundred int4,thousand int4,twothousand int4,fivethous int4,tenthous int4,odd int4, even int4,stringu1 name,stringu2 name,string4 name); +create table tenk1 (unique1 int4,unique2 int4, two int4,four int4,ten int4,twenty int4,hundred int4,thousand int4,twothousand int4,fivethous int4,tenthous int4,odd int4,even int4,stringu1 name,stringu2 name,string4 name); +create table tenk2 (unique1 int4, unique2 int4, two int4, four int4,ten int4, twenty int4, hundred int4, thousand int4, twothousand int4,fivethous int4, tenthous int4, odd int4, even int4,stringu1 name,stringu2 name, string4 name); copy onek from '_CWD_/../regress/data/onek.data'; copy tenk1 from '_CWD_/../regress/data/tenk.data'; copy tenk2 from '_CWD_/../regress/data/tenk.data'; |