don't insert byte[0] into blob type column

that gives unexpected results. in the latest sqlite versions, sqlite folks
have fixed this to always return null.
so, fix the test.

Change-Id: Ia06470f6cfa0aa5981d56dd58e91d2e4cc9538a5
diff --git a/tests/tests/database/src/android/database/sqlite/cts/SQLiteStatementTest.java b/tests/tests/database/src/android/database/sqlite/cts/SQLiteStatementTest.java
index 828045a..b568b8c 100644
--- a/tests/tests/database/src/android/database/sqlite/cts/SQLiteStatementTest.java
+++ b/tests/tests/database/src/android/database/sqlite/cts/SQLiteStatementTest.java
@@ -43,7 +43,7 @@
 
     private static final byte[][] BLOBS = new byte [][] {
         parseBlob("86FADCF1A820666AEBD0789F47932151A2EF734269E8AC4E39630AB60519DFD8"),
-        new byte[0],
+        new byte[1],
         null,
         parseBlob("00"),
         parseBlob("FF"),