Skip to content

Commit 6b339fc

Browse files
committed
add simple materialized view parsing without additional parameters
1 parent b6e3837 commit 6b339fc

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ Original project websites:
1515
* Added support for column comma list in partition by statements
1616
* Added support for columns names in create view statements
1717

18-
1918
```sql
2019
create view testView (col1,col2) as select a, b from table
2120
```
@@ -26,6 +25,11 @@ create view testView (col1,col2) as select a, b from table
2625
update tab1 set c=5 from tab1 inner join tab2 on tab1.col1=tab2.col2
2726
```
2827
* Corrected TableNamesFinder to work with update statements additions.
28+
* Added support for simple create materialized view statements without additional parameters.
29+
30+
```sql
31+
create materialized view testView as select a, b from table
32+
```
2933

3034
## Extensions til Version 0.8.2
3135

0 commit comments

Comments
 (0)