aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/sql/suites/binding/table_regexp_binding.sql
blob: 2e3d721dc62d123f8ca41b842cf2a7f34147cb02 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* syntax version 1 */
/* postgres can not */
/* kikimr can not - range not supported */

$a = "";
$b = "Input";
$c = "";
$d = "";
SELECT count(*) FROM plato.regexp($a,$b,$c,$d);

use plato;

$a = "";
$b = "Input";
$c = "";
$d = "";
SELECT count(*) FROM regexp($a,$b,$c,$d);