mirror of
https://github.com/aljazceru/turso.git
synced 2026-01-04 17:04:18 +01:00
fix get_column_name() when column name doesn't exist
This commit is contained in:
@@ -54,7 +54,11 @@ mod tests {
|
||||
// Placeholders for compilation
|
||||
// Context only necessary parsing inside turso_core or in the simulator
|
||||
impl ToSqlContext for TestContext {
|
||||
fn get_column_name(&self, _table_id: crate::ast::TableInternalId, _col_idx: usize) -> &str {
|
||||
fn get_column_name(
|
||||
&self,
|
||||
_table_id: crate::ast::TableInternalId,
|
||||
_col_idx: usize,
|
||||
) -> String {
|
||||
todo!()
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user