Re: [BUGS] missing support for using regex and arrays

2004-05-11 Thread Tom Lane
Pavel Stehule <[EMAIL PROTECTED]> writes: > I need to solve checking varchar array. I can write > CHECK('aaa' = ALL(x)) -- x is array > but I can't CHECK(ALL(x) = '') or CHECK (ALL(x) ~ 'regex') > I know so I can write plpgsql function. I have question for hackers. Do > You plan better support

[BUGS] missing support for using regex and arrays

2004-05-11 Thread Pavel Stehule
Hello I need to solve checking varchar array. I can write CHECK('aaa' = ALL(x)) -- x is array but I can't CHECK(ALL(x) = '') or CHECK (ALL(x) ~ 'regex') I know so I can write plpgsql function. I have question for hackers. Do You plan better support for it? Thank You Pavel Stehule ---