matthewmturner commented on issue #696:
URL: https://github.com/apache/arrow-rs/issues/696#issuecomment-917427288


   @seddonm1 i believe postgres works as expected. i did the below.
   
   ```
   postgres=# WITH vals(a) AS (VALUES ('Animal'), (null),  ('House')) 
   SELECT a, regexp_matches(a, '^[A]') m from vals;
   ```
   
   Resulting in
   ```
      a    |  m  
   --------+-----
    Animal | {A}
   (1 row)
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to