We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 15a0990 commit 0b07588Copy full SHA for 0b07588
src/Pecee/Pixie/QueryBuilder/Adapters/BaseAdapter.php
@@ -785,6 +785,11 @@ public function wrapSanitizer($value)
785
return $value;
786
}
787
788
+ // If first character contains " - skip sanitation
789
+ if ($value[0] === '"') {
790
+ return $value;
791
+ }
792
+
793
// Separate our table and fields which are joined with a ".", like my_table.id
794
$valueArr = explode('.', $value, 2);
795
0 commit comments