We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2803c8e commit 3e81b45Copy full SHA for 3e81b45
derive/src/lib.rs
@@ -54,10 +54,9 @@ pub fn row(input: proc_macro::TokenStream) -> proc_macro::TokenStream {
54
55
let (impl_generics, ty_generics, where_clause) = input.generics.split_for_impl();
56
57
- // TODO: replace `clickhouse` with `::clickhouse` here.
58
let expanded = quote! {
59
#[automatically_derived]
60
- impl #impl_generics clickhouse::Row for #name #ty_generics #where_clause {
+ impl #impl_generics ::clickhouse::Row for #name #ty_generics #where_clause {
61
const COLUMN_NAMES: &'static [&'static str] = #column_names;
62
}
63
};
0 commit comments