summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlsces <lester@lsces.co.uk>2026-02-04 19:53:46 +0000
committerlsces <lester@lsces.co.uk>2026-02-04 19:53:46 +0000
commitec10a53d7b9d0ac85dd0b41122846e022b8eb813 (patch)
treecb540edb68df29dccd1dda9cffe81ceb96d8c738
parent3c293d5eaa5659f2bafac7406d52668a4cc649b0 (diff)
downloadilluminate-firebird-ec10a53d7b9d0ac85dd0b41122846e022b8eb813.tar.gz
illuminate-firebird-ec10a53d7b9d0ac85dd0b41122846e022b8eb813.tar.bz2
illuminate-firebird-ec10a53d7b9d0ac85dd0b41122846e022b8eb813.zip
Replace cluge to replace ? with table name since it's now passed in the function call
-rwxr-xr-xsrc/Schema/Grammars/FirebirdGrammar.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Schema/Grammars/FirebirdGrammar.php b/src/Schema/Grammars/FirebirdGrammar.php
index 672726a..17037fb 100755
--- a/src/Schema/Grammars/FirebirdGrammar.php
+++ b/src/Schema/Grammars/FirebirdGrammar.php
@@ -43,7 +43,7 @@ class FirebirdGrammar extends Grammar
*/
public function compileTableExists($schema = '', $table = '')
{
- return 'select rdb$relation_name from rdb$relations where rdb$relation_name = ?';
+ return "select rdb\$relation_name from rdb\$relations where rdb\$relation_name = '$table'";
}
/**