//
// Copyright © 2023, RedSoft
// License: MIT
//
use sqlx_core::column::*;
use crate::{FbTypeInfo, Firebird};
#[derive(Debug, Clone)]
pub struct FbColumn {}
impl Column for FbColumn {
type Database = Firebird;
fn ordinal(&self) -> usize {
todo!()
}
fn name(&self) -> &str {
todo!()
}
fn type_info(&self) -> &FbTypeInfo {
todo!()
}
}