From 0651e3bed05923765203b37986a2506dac3e634e Mon Sep 17 00:00:00 2001 From: Gord Thompson Date: Mon, 9 Mar 2020 07:32:02 -0600 Subject: [PATCH] Add test --- test/dialect/oracle/test_reflection.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/test/dialect/oracle/test_reflection.py b/test/dialect/oracle/test_reflection.py index 6c36c0a6bb..411ba335c6 100644 --- a/test/dialect/oracle/test_reflection.py +++ b/test/dialect/oracle/test_reflection.py @@ -49,6 +49,8 @@ create table %(test_schema)s.parent( data varchar2(50) ); +COMMENT ON TABLE %(test_schema)s.parent IS 'my table comment'; + create table %(test_schema)s.child( id integer primary key, data varchar2(50), @@ -189,6 +191,9 @@ drop synonym %(test_schema)s.local_table; parent.join(child) ).execute().fetchall() + # check table comment (#5146) + eq_(parent.comment, "my table comment") + def test_reflect_local_to_remote(self): testing.db.execute( "CREATE TABLE localtable (id INTEGER " -- 2.47.3