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 f684cb0 commit feae810Copy full SHA for feae810
tests/Provider/CommandProvider.php
@@ -76,4 +76,15 @@ public function batchInsert(): array
76
77
return $batchInsert;
78
}
79
+
80
+ public function rawSql(): array
81
+ {
82
+ return array_merge(parent::rawSql(), [
83
+ [
84
+ 'SELECT * FROM customer WHERE id::integer IN (:in, :out)',
85
+ [':in' => 1, ':out' => 2],
86
+ 'SELECT * FROM customer WHERE id::integer IN (1, 2)',
87
+ ],
88
+ ]);
89
+ }
90
0 commit comments