From 941747e36a00bf1610e97037c6a3a27f35ac2b01 Mon Sep 17 00:00:00 2001 From: Dimitri Fontaine Date: Thu, 21 Nov 2013 10:54:57 +0100 Subject: [PATCH] Cleanup in the census places test. --- test/census-places.load | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/test/census-places.load b/test/census-places.load index ff3230a..34e7f64 100644 --- a/test/census-places.load +++ b/test/census-places.load @@ -6,10 +6,10 @@ LOAD ARCHIVE $$ drop table if exists places; $$, $$ create table places ( - usps char(2) NOT NULL, - fips char(2) NOT NULL, + usps char(2) not null, + fips char(2) not null, fips_code char(5), - loc_name varchar(64) + loc_name varchar(64) ); $$ @@ -17,6 +17,7 @@ LOAD ARCHIVE FROM FILENAME MATCHING ~/places2k.txt/ WITH ENCODING latin-1 ( + -- name start length usps 0 2, fips 2 2, fips_code 4 5,