From 6d7ddf7b3f960de8109440524ee6bb64d81f9de2 Mon Sep 17 00:00:00 2001 From: lsces Date: Mon, 2 Mar 2026 15:45:31 +0000 Subject: Ensure field name lookup is upper case. This will need expanding if we want he driver to handle lower case field names. --- src/Schema/Grammars/FirebirdGrammar.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Schema/Grammars/FirebirdGrammar.php b/src/Schema/Grammars/FirebirdGrammar.php index cf86728..a5feb1b 100755 --- a/src/Schema/Grammars/FirebirdGrammar.php +++ b/src/Schema/Grammars/FirebirdGrammar.php @@ -72,7 +72,7 @@ class FirebirdGrammar extends Grammar { return 'select trim(trailing from rdb$field_name) as "name" ' .'from rdb$relation_fields ' - .'where rdb$relation_name = '.$this->quoteString($table).' ' + .'where rdb$relation_name = '.$this->quoteString(strtoupper($table) ).' ' .'order by rdb$relation_name'; } -- cgit v1.3