Skip to content

Commit 73e0435

Browse files
Fix typo in column name
1 parent fab7913 commit 73e0435

File tree

2 files changed

+37
-36
lines changed

2 files changed

+37
-36
lines changed

.idea/workspace.xml

Lines changed: 36 additions & 35 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/src/main/java/net/zetetic/tests/QueryLimitTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ public class QueryLimitTest extends SQLCipherTest {
1010
@Override
1111
public boolean execute(SQLiteDatabase database) {
1212

13-
String create = "CREATE TABLE t1(id ID INTEGER(20) PRIMARY KEY, name VARCHAR(50));";
13+
String create = "CREATE TABLE t1(id INTEGER(20) PRIMARY KEY, name VARCHAR(50));";
1414
String query1 = "SELECT id, name FROM t1 ORDER BY ID ASC LIMIT 0, 20;";
1515
String query2 = "SELECT id, name FROM t1 ORDER BY ID ASC LIMIT 20, 20;";
1616
database.rawExecSQL(create);

0 commit comments

Comments
 (0)