| LOW | diesel_infer_query/src/query_source.rs | 1 | // This Source Code Form is subject to the terms of the Mozilla Public |
| LOW | diesel_infer_query/src/query_source.rs | 21 | /// This information is relevant to |
| LOW | diesel_infer_query/src/query_source.rs | 41 | /// source lookup map |
| LOW | diesel_infer_query/src/error.rs | 1 | // This Source Code Form is subject to the terms of the Mozilla Public |
| LOW | diesel_infer_query/src/views.rs | 21 | pub fn field_count(&self) -> usize { |
| LOW | .config/nextest.toml | 21 | # statements straddling a second boundary; |
| LOW | guide_drafts/trait_derives.md | 221 | } |
| LOW | diesel_compile_tests/tests/trybuild.rs | 21 | // would leak into the blessed `.stderr` files. Map the actual target |
| LOW | …ests/tests/fail/array_expressions_must_be_same_type.rs | 21 | //~^ ERROR: cannot select `f64` from `diesel::query_builder::from_clause::NoFromClause` |
| LOW | …ests/fail/right_side_of_left_join_requires_nullable.rs | 41 | let join = users::table.left_outer_join(posts::table); |
| LOW | …ests/fail/right_side_of_left_join_requires_nullable.rs | 141 | //~^ ERROR: type mismatch resolving `<table as AppearsInFromClause<table>>::Count == Never` |
| LOW | …select_for_update_cannot_be_mixed_with_some_clauses.rs | 21 | //~| ERROR: the trait bound `SelectStatement<FromClause<...>>: LockingDsl<...>` is not satisfied |
| LOW | …select_for_update_cannot_be_mixed_with_some_clauses.rs | 41 | //~| ERROR: the trait bound `SelectStatement<FromClause<...>>: LockingDsl<...>` is not satisfied |
| LOW | …ail/custom_returning_requires_selectable_expression.rs | 41 | //~^ ERROR: cannot select `bad::columns::age` from `ReturningQuerySource<..., ...>` |
| LOW | …indow_functions_expression_requires_window_function.rs | 21 | users::table.select(lower(users::name).over()); |
| LOW | …indow_functions_expression_requires_window_function.rs | 41 | //~| ERROR: `diesel::sql_types::Text` is neither `diesel::sql_types::Range<_>` nor `diesel::sql_types::Multirange<_> |
| LOW | …ggregate_expression_requires_column_from_same_table.rs | 21 | let source = users::table.select(sum(posts::id)); |
| LOW | diesel_compile_tests/tests/fail/selectable.rs | 201 | //~| ERROR: the trait bound `ReturningQuerySource<..., ...>: TableNotEqual<...>` is not satisfied |
| LOW | diesel_compile_tests/tests/fail/selectable.rs | 221 | .load(&mut conn) |
| LOW | …compile_tests/tests/fail/find_requires_correct_type.rs | 21 | //~^ ERROR: the trait bound `str: Expression` is not satisfied |
| LOW | …s/fail/derive/belongs_to_missing_foreign_key_column.rs | 21 | #[derive(Associations)] |
| LOW | …sts/tests/fail/derive/identifiable_missing_pk_field.rs | 21 | } |
| LOW | …esel_compile_tests/tests/fail/derive/bad_belongs_to.rs | 61 | #[diesel(belongs_to(Bar = "bar_id"))] |
| LOW | diesel_compile_tests/tests/fail/derive/empty_struct.rs | 21 | //~^ ERROR: this derive can only be used on non-unit structs |
| LOW | …l_compile_tests/tests/fail/derive/bad_postgres_type.rs | 21 | #[diesel(postgres_type(name))] |
| LOW | …l_compile_tests/tests/fail/derive/bad_postgres_type.rs | 41 | #[diesel(postgres_type(name = "foo", array_oid = 3))] |
| LOW | …l_compile_tests/tests/fail/derive/bad_postgres_type.rs | 61 | #[diesel(postgres_type(schema = "foo"))] |
| LOW | diesel_compile_tests/tests/fail/derive/bad_sql_type.rs | 1 | extern crate diesel; |
| LOW | …esel_compile_tests/tests/fail/derive/bad_mysql_type.rs | 21 | #[diesel(mysql_type(name))] |
| LOW | diesel_compile_tests/tests/fail/derive/has_query.rs | 41 | //~| ERROR: the trait bound `std::string::String: FromSqlRow<diesel::sql_types::Integer, Pg>` is not satisfied |
| LOW | …sel_compile_tests/tests/fail/derive/bad_sqlite_type.rs | 21 | #[diesel(sqlite_type(name))] |
| LOW | …ts/fail/derive/belongs_to_missing_foreign_key_field.rs | 1 | #[macro_use] |
| LOW | …sel_compile_tests/tests/fail/derive/bad_column_name.rs | 21 | #[derive(Queryable)] |
| LOW | …tests/fail/derive_deprecated/deprecated_column_name.rs | 21 | #[derive(AsChangeset)] |
| LOW | …sts/fail/derive_deprecated/deprecated_postgres_type.rs | 21 | #[postgres(type_name)] |
| LOW | …sts/fail/derive_deprecated/deprecated_postgres_type.rs | 41 | #[postgres(type_name = "foo", array_oid = "3")] |
| LOW | …ts/tests/fail/derive_deprecated/deprecated_sql_type.rs | 1 | #[macro_use] |
| LOW | …/tests/fail/derive_deprecated/deprecated_belongs_to.rs | 21 | |
| LOW | …/tests/fail/derive_deprecated/deprecated_belongs_to.rs | 61 | #[derive(Associations)] |
| LOW | …/tests/fail/derive_deprecated/deprecated_belongs_to.rs | 101 | #[belongs_to(Bar, what)] |
| LOW | diesel_dynamic_schema/src/dynamic_value.rs | 1 | //! This module provides a container that allows to receive a dynamically |
| LOW | diesel_dynamic_schema/src/dynamic_value.rs | 21 | //! # |
| LOW | diesel_dynamic_schema/src/dynamic_value.rs | 41 | //! # } |
| LOW | diesel_dynamic_schema/src/dynamic_value.rs | 61 | //! # |
| LOW | diesel_dynamic_schema/src/dynamic_value.rs | 81 | //! # |
| LOW | diesel_dynamic_schema/src/dynamic_value.rs | 101 | //! ); |
| LOW | diesel_dynamic_schema/src/dynamic_value.rs | 121 | //! #[derive(PartialEq, Debug)] |
| LOW | diesel_dynamic_schema/src/dynamic_value.rs | 141 | //! } |
| LOW | diesel_dynamic_schema/src/lib.rs | 1 | //! # Diesel dynamic schema |
| LOW | diesel_dynamic_schema/src/lib.rs | 21 | //! for actually exist, or that the types you state are correct. |
| LOW | diesel_dynamic_schema/src/lib.rs | 41 | //! # |
| LOW | diesel_dynamic_schema/src/lib.rs | 61 | //! # |
| LOW | diesel_dynamic_schema/src/lib.rs | 101 | /// |
| LOW | diesel_dynamic_schema/src/table.rs | 41 | } |
| LOW | diesel_dynamic_schema/src/table.rs | 61 | /// assert_eq!(table_with_schema.name(), &"posts"); |
| LOW | dsl_auto_type/src/auto_type/local_variables_map.rs | 121 | LetStatementInferredType { |
| LOW | diesel/src/data_types.rs | 1 | //! Structs to represent the primitive equivalent of SQL types where |
| LOW | diesel/src/reexport_ambiguities.rs | 1 | // This macro exists to workaround |
| LOW | diesel/src/backend.rs | 21 | /// A database backend |
| LOW | diesel/src/backend.rs | 41 | /// details how the newly implemented backend may communicate with diesel. As of this, |
| 1395 more matches not shown… |