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
Copy file name to clipboardExpand all lines: README.md
+43-1Lines changed: 43 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -80,7 +80,9 @@ Context helps give context of where the table was used in the query:
80
80
81
81
## Functions
82
82
83
-
This extension provides one table function and two scalar functions for parsing SQL and extracting referenced tables.
83
+
This extension provides one table function and three scalar functions for parsing SQL and extracting referenced tables.
84
+
85
+
In general, errors (e.g. Parse Exception) will not be exposed to the user, but instead will result in an empty result. This simplifies batch processing. When validity is needed, [is_parsable](#is_parsablesql_query--scalar-function) can be used.
84
86
85
87
### `parse_tables(sql_query)` – Table Function
86
88
@@ -170,6 +172,46 @@ SELECT parse_tables('select * from MyTable t inner join Other o on o.id = t.id')
0 commit comments