Github user DaveBirdsall commented on a diff in the pull request:
https://github.com/apache/trafodion/pull/1504#discussion_r179530143
--- Diff: core/sql/bin/SqlciErrors.txt ---
@@ -2,7 +2,7 @@
1000 42000 99999 BEGINNER INFRM LOGONLY A syntax error occurred.
1001 ZZZZZ 99999 ADVANCED CRTCL DIALOUT An internal error occurred in
module $0~String0 on line $1~Int0. Details($2~String1).
1002 ZZZZZ 99999 BEGINNER MAJOR DBADMIN Catalog $0~CatalogName does not
exist.
-1003 ZZZZZ 99999 BEGINNER MINOR DBADMIN Schema $0~SchemaName does not
exist.
+1003 ZZZZZ 99999 BEGINNER MINOR DBADMIN Schema $0~String0.$1~String1 does
not exist.
--- End diff --
I'm guessing String0 is CatalogName and String1 is SchemaName. If so,
slightly better would be $0~CatalogName.$0~SchemaName
---