There was an error while loading. Please reload this page.
1 parent f45dc04 commit 4239e44Copy full SHA for 4239e44
integration_test.sh
@@ -72,3 +72,11 @@ assert_count "nd" "way_nodes"
72
echo "INFO: Testing ref_tags count."
73
assert_count "tag" "ref_tags"
74
75
+if (( $PASSED == $TOTAL )); then
76
+echo "INFO: Passed all tests."
77
+exit 0;
78
+else
79
+echo "ERROR: Passed only ($PASSED/$TOTAL) test cases.";
80
+exit 1;
81
+fi
82
+
src/models.rs
@@ -81,7 +81,7 @@ impl Model for Tag {
fn get_create_table_query() -> &'static str {
83
"CREATE TABLE tags(\
84
- id INETGER,\
+ id INTEGER,\
85
name VARCHAR(256),
86
CONSTRAINT tags_pk PRIMARY KEY(id)\
87
)"
0 commit comments