'user' is officially an SQL reserved word, which means that it cannot be
used as a field name.  Postgres enforces this so rename it to username.

Signed-off-by: Andy Whitcroft <apw@shadowen.org>



git-svn-id: http://test.kernel.org/svn/autotest/trunk@1017 592f7852-d20e-0410-864c-8624ca9c26a4
diff --git a/tko/frontend.py b/tko/frontend.py
index 0bd6f65..9b1772c 100755
--- a/tko/frontend.py
+++ b/tko/frontend.py
@@ -18,7 +18,7 @@
 	 	   'machine_group': ['machine_group', 'machine_idx', 'machine_idx'],
 		   'hostname': ['hostname', 'machine_idx', 'machine_idx'],
 		   'label': ['label', 'job_idx', 'job_idx'],
-		   'user': ['user', 'job_idx', 'job_idx'],
+		   'user': ['username', 'job_idx', 'job_idx'],
 		   'test': ['test', 'test', 'test'],
 		   'status': ['word', 'status_idx', 'status'],
 		   'reason': ['reason', 'test_idx', 'test_idx'] }