Skip to content

Commit 66c8df0

Browse files
committed
Bump nightly version
1 parent b5ed570 commit 66c8df0

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ dist: trusty
44
rust:
55
- stable
66
- beta
7-
- nightly-2016-03-20
7+
- nightly-2016-04-01
88
- nightly
99
addons:
1010
postgresql: '9.4'

diesel_compile_tests/tests/compile-fail/pg_specific_expressions_cant_be_used_in_a_sqlite_query.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ fn main() {
2222

2323
users.select(id).filter(name.eq(any(Vec::<String>::new())))
2424
.load::<i32>(&connection);
25-
//~^ ERROR type mismatch resolving `<diesel::sqlite::connection::SqliteConnection as diesel::connection::Connection>::Backend == diesel::pg::backend::Pg
25+
//~^ ERROR type mismatch resolving `<diesel::sqlite::SqliteConnection as diesel::Connection>::Backend == diesel::pg::Pg`
2626
users.select(id).filter(name.is_not_distinct_from("Sean"))
2727
.load::<i32>(&connection);
2828
//~^ ERROR E0277

diesel_compile_tests/tests/compile-fail/select_carries_correct_result_type_info.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ fn main() {
1919
let select_name = users.select(name);
2020

2121
let ids = select_name.load::<i32>(&connection);
22-
//~^ ERROR the trait `diesel::query_source::Queryable<diesel::types::VarChar, _>` is not implemented for the type `i32`
22+
//~^ ERROR the trait `diesel::Queryable<diesel::types::VarChar, _>` is not implemented for the type `i32`
2323
let names = select_id.load::<String>(&connection);
24-
//~^ ERROR the trait `diesel::query_source::Queryable<diesel::types::Integer, _>` is not implemented
24+
//~^ ERROR the trait `diesel::Queryable<diesel::types::Integer, _>` is not implemented
2525
}

0 commit comments

Comments
 (0)