self-test.td 859 B

123456789101112131415161718192021222324
  1. # Copyright Materialize, Inc. and contributors. All rights reserved.
  2. #
  3. # Use of this software is governed by the Business Source License
  4. # included in the LICENSE file at the root of this repository.
  5. #
  6. # As of the Change Date specified in that file, in accordance with
  7. # the Business Source License, use of this software will be governed
  8. # by the Apache License, Version 2.0.
  9. # Test tricky behavior of testdrive itself that isn't currently tested by other tests
  10. # The regex 'foo[a]bar' matches the string 'fooabar' but not itself
  11. $ set no-self-match=foo[a]bar
  12. > CREATE TABLE example (a int)
  13. ! SELECT "${no-self-match}" FROM example
  14. contains: column "foo[a]bar" does not exist
  15. ! SELECT "${no-self-match}" FROM example
  16. contains: column "${no-self-match}" does not exist
  17. ! SELECT "${no-self-match}" FROM example
  18. regex: column "${no-self-match}".*not exist