diff options
author | einhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46> | 2008-10-05 22:00:11 +0000 |
---|---|---|
committer | einhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46> | 2008-10-05 22:00:11 +0000 |
commit | 98049bf1c28698a84e42be9ba8da82d687203dd6 (patch) | |
tree | 22738f777a813ea5d845cd8b5d821feafadb0f32 /sql | |
parent | 78378acad3a0d9173c53ddafc13f764b4eccacc1 (diff) |
Correcting load issue on Location.sql
git-svn-id: https://ledger-smb.svn.sourceforge.net/svnroot/ledger-smb/trunk@2350 4979c152-3d1c-0410-bac9-87ea11338e46
Diffstat (limited to 'sql')
-rw-r--r-- | sql/modules/Location.sql | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sql/modules/Location.sql b/sql/modules/Location.sql index 0597a241..fb4902a2 100644 --- a/sql/modules/Location.sql +++ b/sql/modules/Location.sql @@ -156,8 +156,8 @@ CREATE TYPE location_result AS ( line_three text, city text, state text, - mail_code text, - country text, + mail_code text, + country text ); CREATE OR REPLACE FUNCTION location__get(in_id int) returns location_result AS $$ @@ -184,4 +184,4 @@ begin return l_row; END LOOP; END; -$$ language plpgsql ;
\ No newline at end of file +$$ language plpgsql ; |