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: cratedb_sqlparse_js/cratedb_sqlparse/models.js
+10-13Lines changed: 10 additions & 13 deletions
Original file line number
Diff line number
Diff line change
@@ -5,26 +5,22 @@
5
5
exportclassMetadata{
6
6
7
7
/**
8
-
*
9
-
* @param {Table[]} tables
10
-
* @param parameterizedProperties
11
-
* @param withProperties
8
+
* @param {Table[]} tables - The referenced tables in the query.
9
+
* @param {object} parameterizedProperties - The properties whose value can be used to inject parameters, they start with '$', example: `CREATE TABLE a (b text) WITH ("allocation.max_retries" = $1)`
10
+
* @param {object} withProperties - SQL properties, defined after a `WITH` statement. Example: `CREATE TABLE a (b text) WITH ("allocation.max_retries" = 5)`
0 commit comments