diff options
author | Bruce Momjian <bruce@momjian.us> | 2002-07-18 22:31:44 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2002-07-18 22:31:44 +0000 |
commit | 776fc8cc5cb6db9e16bb8c623eace918b4c27d26 (patch) | |
tree | 1c0f72f48422fc503b95c625ca9b6cf8160bfe8b /src | |
parent | 2aa6a5de8717390cb24763efcbeff4f7f571bc24 (diff) | |
download | postgresql-776fc8cc5cb6db9e16bb8c623eace918b4c27d26.tar.gz postgresql-776fc8cc5cb6db9e16bb8c623eace918b4c27d26.zip |
New depend code doesn't need sequence drop.
Diffstat (limited to 'src')
-rw-r--r-- | src/test/regress/sql/copy2.sql | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/test/regress/sql/copy2.sql b/src/test/regress/sql/copy2.sql index 1687de24df6..52d0bee4ed2 100644 --- a/src/test/regress/sql/copy2.sql +++ b/src/test/regress/sql/copy2.sql @@ -51,6 +51,5 @@ COPY x (a,b,c,d,e) from stdin; COPY x TO stdout; DROP TABLE x; -DROP SEQUENCE x_a_seq; DROP FUNCTION fn_x_before(); DROP FUNCTION fn_x_after(); |