table.slt 739 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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. # Tests for the esoteric TABLE statement.
  10. mode cockroach
  11. statement ok
  12. CREATE TABLE t (a int)
  13. statement ok
  14. INSERT INTO t VALUES (1), (2), (3)
  15. query I rowsort
  16. TABLE t
  17. ----
  18. 1
  19. 2
  20. 3
  21. query I rowsort
  22. TABLE materialize.public.t
  23. ----
  24. 1
  25. 2
  26. 3
  27. query I
  28. TABLE t UNION ALL TABLE t ORDER BY a LIMIT 5
  29. ----
  30. 1
  31. 1
  32. 2
  33. 2
  34. 3
  35. query error unknown catalog item 'noexist'
  36. TABLE noexist