MXS-1389: Fix fwf test rules
The new tests now use the correct syntax for the rule files.
This commit is contained in:
@ -4,4 +4,3 @@ INSERT INTO t1 VALUES (1, 1, 1);
|
|||||||
SELECT name, address, email FROM t1;
|
SELECT name, address, email FROM t1;
|
||||||
SELECT name, address, SUM(email) FROM t1;
|
SELECT name, address, SUM(email) FROM t1;
|
||||||
SELECT CAST(name AS TEXT), CAST(address AS TEXT), SUM(email) FROM t1;
|
SELECT CAST(name AS TEXT), CAST(address AS TEXT), SUM(email) FROM t1;
|
||||||
|
|
||||||
|
@ -1,2 +1,2 @@
|
|||||||
rule no_func deny functions sum avg
|
rule no_func deny function sum avg
|
||||||
users %@% match any rules no_func
|
users %@% match any rules no_func
|
||||||
|
@ -1,2 +1,2 @@
|
|||||||
rule no_func deny functions sum avg columns name address
|
rule no_func deny function sum avg columns name address
|
||||||
users %@% match any rules no_func
|
users %@% match any rules no_func
|
||||||
|
Reference in New Issue
Block a user