fix pg_get_tabledef test case

This commit is contained in:
lvhui
2022-11-08 00:24:26 -08:00
parent ac8a50618d
commit 6ae1d04c72

View File

@ -788,7 +788,7 @@ select * from pg_get_tabledef('test');
CREATE TABLE test ( +
a integer, +
b timestamp without time zone DEFAULT now() ON UPDATE CURRENT_TIMESTAMP,+
c timestamp with time zone DEFAULT ON UPDATE CURRENT_TIMESTAMP(5) +
c timestamp with time zone ON UPDATE CURRENT_TIMESTAMP(5) +
) +
WITH (orientation=row, compression=no);
(1 row)