javascript/syncbase: t -> Type(v) in query language.

t is no longer a reserved identifier meaning the type of the
value in the key/value pair.  The function 'Type' takes its
place and can be used on the value -- Type(v) -- or any part
of the value -- Type(v.Foo)

Note: will submit this immediatly after submitted the syncbase/syncQL
      change wich removes t and add Type(v).

MultiPart: 2/2

Change-Id: Ib6bb6384aaf5e8d370315399e595acdd6e7be33c
diff --git a/test/integration/test-database.js b/test/integration/test-database.js
index af5a0f1..0182bfb 100644
--- a/test/integration/test-database.js
+++ b/test/integration/test-database.js
@@ -464,7 +464,7 @@
         ]
       },
       {
-        q: 'select k, v.First from %s where t = "personType"',
+        q: 'select k, v.First from %s where Type(v) = "personType"',
         want: [
           ['k', 'v.First'],
           ['Homer', homer.first],
@@ -474,7 +474,7 @@
         ]
       },
       {
-        q: 'select k, v.Population from %s where t = "cityType"',
+        q: 'select k, v.Population from %s where Type(v) = "cityType"',
         want: [
           ['k', 'v.Population'],
           ['Shelbyville', shelbyville.population],