crit bug fixed

This commit is contained in:
filipriec
2025-06-25 17:33:37 +02:00
parent 625c9b3e09
commit a5afc75099

View File

@@ -33,7 +33,7 @@ pub async fn qualify_table_name(
.unwrap_or(false);
if definition_exists {
Ok(format!("{}.\"{}\"", profile_name, table_name))
Ok(format!("\"{}\".\"{}\"", profile_name, table_name))
} else {
// It's not a user-defined table, so it must be a system table in 'public.
Ok(format!("\"{}\"", table_name))