nk1506 commented on issue #225:
URL: https://github.com/apache/polaris/issues/225#issuecomment-2331243599
Thanks @collado-mike for the response. I just tried
`./regtests/run_spark_sql.sh` and the following script:
```
create database db1;
show databases;
create table db1.table1 (id int, name string);
insert into db1.table1 values (1, 'a');
select * from db1.table1;
create view db1.v1 as select * from db1.table1;
```
But it seems working now.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]