@@ -21,7 +21,7 @@ use std::sync::{Arc, LazyLock};
2121
2222use arrow_schema:: { DataType , Field , Schema , SchemaRef , UnionFields , UnionMode } ;
2323
24- /// Schema of the data returned by [get_table_types][crate::Connection ::get_table_types].
24+ /// Schema of the data returned by [get_table_types][crate::AsyncConnection ::get_table_types].
2525pub static GET_TABLE_TYPES_SCHEMA : LazyLock < SchemaRef > = LazyLock :: new ( || {
2626 Arc :: new ( Schema :: new ( vec ! [ Field :: new(
2727 "table_type" ,
@@ -30,7 +30,7 @@ pub static GET_TABLE_TYPES_SCHEMA: LazyLock<SchemaRef> = LazyLock::new(|| {
3030 ) ] ) )
3131} ) ;
3232
33- /// Schema of the data returned by [get_info][crate::Connection ::get_info].
33+ /// Schema of the data returned by [get_info][crate::AsyncConnection ::get_info].
3434pub static GET_INFO_SCHEMA : LazyLock < SchemaRef > = LazyLock :: new ( || {
3535 let info_schema = DataType :: Union (
3636 UnionFields :: new (
@@ -64,7 +64,7 @@ pub static GET_INFO_SCHEMA: LazyLock<SchemaRef> = LazyLock::new(|| {
6464 ] ) )
6565} ) ;
6666
67- /// Schema of data returned by [get_statistic_names][crate::Connection ::get_statistic_names].
67+ /// Schema of data returned by [get_statistic_names][crate::AsyncConnection ::get_statistic_names].
6868pub static GET_STATISTIC_NAMES_SCHEMA : LazyLock < SchemaRef > = LazyLock :: new ( || {
6969 Arc :: new ( Schema :: new ( vec ! [
7070 Field :: new( "statistic_name" , DataType :: Utf8 , false ) ,
@@ -114,7 +114,7 @@ pub static STATISTICS_DB_SCHEMA_SCHEMA: LazyLock<DataType> = LazyLock::new(|| {
114114 )
115115} ) ;
116116
117- /// Schema of data returned by [get_statistics][crate::Connection ::get_statistics].
117+ /// Schema of data returned by [get_statistics][crate::AsyncConnection ::get_statistics].
118118pub static GET_STATISTICS_SCHEMA : LazyLock < SchemaRef > = LazyLock :: new ( || {
119119 Arc :: new ( Schema :: new ( vec ! [
120120 Field :: new( "catalog_name" , DataType :: Utf8 , true ) ,
@@ -219,7 +219,7 @@ pub static OBJECTS_DB_SCHEMA_SCHEMA: LazyLock<DataType> = LazyLock::new(|| {
219219 )
220220} ) ;
221221
222- /// Schema of data returned by [get_objects][crate::Connection ::get_objects].
222+ /// Schema of data returned by [get_objects][crate::AsyncConnection ::get_objects].
223223pub static GET_OBJECTS_SCHEMA : LazyLock < SchemaRef > = LazyLock :: new ( || {
224224 Arc :: new ( Schema :: new ( vec ! [
225225 Field :: new( "catalog_name" , DataType :: Utf8 , true ) ,
0 commit comments