objects.td 1.0 KB

12345678910111213141516171819202122232425262728293031
  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. ! INSERT INTO t VALUES (1, 'ghp_9fK8sL3x7TqR1vEzYm2pDaN4WjXbQzUtV0aN');
  10. contains:unknown catalog item 't'
  11. ! SHOW CREATE TABLE t;
  12. contains:unknown catalog item 't'
  13. > CREATE TABLE t (a text NOT NULL)
  14. > INSERT INTO t VALUES ('ghp_9fK8sL3x7TqR1vEzYm2pDaN4WjXbQzUtV0aN');
  15. > SELECT * FROM t
  16. ghp_9fK8sL3x7TqR1vEzYm2pDaN4WjXbQzUtV0aN
  17. > UPDATE t SET a = 'ghp_9fK8sL3x7TqR1vEzYm2pDaN4WjXbQzUtV0aN'
  18. > DELETE FROM t WHERE a = 'ghp_9fK8sL3x7TqR1vEzYm2pDaN4WjXbQzUtV0aN'
  19. > CREATE VIEW v AS SELECT 'ghp_9fK8sL3x7TqR1vEzYm2pDaN4WjXbQzUtV0aN'
  20. > CREATE MATERIALIZED VIEW mv AS SELECT 'ghp_9fK8sL3x7TqR1vEzYm2pDaN4WjXbQzUtV0aN'
  21. > CREATE SECRET s AS 'ghp_9fK8sL3x7TqR1vEzYm2pDaN4WjXbQzUtV0aN'