Github user zellerh commented on a diff in the pull request:
https://github.com/apache/trafodion/pull/1619#discussion_r197893009
--- Diff: core/sql/regress/compGeneral/EXPECTED023 ---
@@ -23,6 +23,10 @@ SB_HISTOGRAMS
SB_HISTOGRAM_INTERVALS
SB_PERSISTENT_SAMPLES
+=======================
--- End diff --
Agree with Venkat. The GET statement should behave like a SELECT as much as
possible. Ideally, we would someday allow it in places where we allow select:
```
select *
from (get users union all get schemas) T(o)
where o like 'finance%'
```
I know, that's science fiction for now, but it would be good to make sure
this will some day be possible.
---