You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
SQL> create table test (n integer);
SQL> create view view_test (x, y) as select n, n * 2 from test;
SQL> show view view_test;
X INTEGER Nullable
Y Computed by:
View Source:
==== ======
select n, n * 2 from test
I'll change to:
SQL> show view view_test;
X INTEGER Nullable
Y BIGINT Expression
View Source:
==== ======
select n, n * 2 from test
Submitted by: @asfernandes
Is related to QA344
SQL> create table test (n integer);
SQL> create view view_test (x, y) as select n, n * 2 from test;
SQL> show view view_test;
X INTEGER Nullable
Y Computed by:
View Source:
==== ======
select n, n * 2 from test
I'll change to:
SQL> show view view_test;
X INTEGER Nullable
Y BIGINT Expression
View Source:
==== ======
select n, n * 2 from test
Commits: a8cf013
The text was updated successfully, but these errors were encountered: