compiled without any problems
This commit is contained in:
@@ -19,7 +19,7 @@ impl SyntaxParser {
|
||||
}
|
||||
}
|
||||
|
||||
pub fn parse(&self, script: &str) -> String {
|
||||
pub fn parse(&self, script: &str, current_table: &str) -> String {
|
||||
let mut transformed = script.to_string();
|
||||
|
||||
// Process indexed access first to avoid overlap with relationship matches
|
||||
@@ -46,7 +46,7 @@ impl SyntaxParser {
|
||||
transformed
|
||||
}
|
||||
|
||||
pub fn extract_dependencies(&self, script: &str) -> (HashSet<String>, HashSet<String>) {
|
||||
pub fn extract_dependencies(&self, script: &str, current_table: &str) -> (HashSet<String>, HashSet<String>) {
|
||||
let mut tables = HashSet::new();
|
||||
let mut columns = HashSet::new();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user