Parcourir la source

replace wrong syntax in insertValuesList (#1082)

Looks good, thanks!
Xiao Kang il y a 5 ans
Parent
commit
800e902aab
29 fichiers modifiés avec 11 ajouts et 11 suppressions
  1. 1 1
      desktop/core/src/desktop/js/parse/jison/sql/calcite/sql_insert.jison
  2. 1 1
      desktop/core/src/desktop/js/parse/jison/sql/druid/sql_insert.jison
  3. 1 1
      desktop/core/src/desktop/js/parse/jison/sql/elasticsearch/sql_insert.jison
  4. 1 1
      desktop/core/src/desktop/js/parse/jison/sql/flink/sql_insert.jison
  5. 1 1
      desktop/core/src/desktop/js/parse/jison/sql/generic/sql_insert.jison
  6. 1 1
      desktop/core/src/desktop/js/parse/jison/sql/hive/sql_insert.jison
  7. 1 1
      desktop/core/src/desktop/js/parse/jison/sql/ksql/sql_insert.jison
  8. 1 1
      desktop/core/src/desktop/js/parse/jison/sql/phoenix/sql_insert.jison
  9. 1 1
      desktop/core/src/desktop/js/parse/jison/sql/presto/sql_insert.jison
  10. 1 1
      desktop/core/src/desktop/js/parse/jison/sql_insert.jison
  11. 0 0
      desktop/core/src/desktop/js/parse/sql/calcite/calciteAutocompleteParser.js
  12. 0 0
      desktop/core/src/desktop/js/parse/sql/calcite/calciteSyntaxParser.js
  13. 0 0
      desktop/core/src/desktop/js/parse/sql/druid/druidAutocompleteParser.js
  14. 0 0
      desktop/core/src/desktop/js/parse/sql/druid/druidSyntaxParser.js
  15. 0 0
      desktop/core/src/desktop/js/parse/sql/elasticsearch/elasticsearchAutocompleteParser.js
  16. 0 0
      desktop/core/src/desktop/js/parse/sql/elasticsearch/elasticsearchSyntaxParser.js
  17. 0 0
      desktop/core/src/desktop/js/parse/sql/flink/flinkAutocompleteParser.js
  18. 0 0
      desktop/core/src/desktop/js/parse/sql/flink/flinkSyntaxParser.js
  19. 0 0
      desktop/core/src/desktop/js/parse/sql/generic/genericAutocompleteParser.js
  20. 0 0
      desktop/core/src/desktop/js/parse/sql/generic/genericSyntaxParser.js
  21. 0 0
      desktop/core/src/desktop/js/parse/sql/hive/hiveAutocompleteParser.js
  22. 0 0
      desktop/core/src/desktop/js/parse/sql/hive/hiveSyntaxParser.js
  23. 0 0
      desktop/core/src/desktop/js/parse/sql/ksql/ksqlAutocompleteParser.js
  24. 0 0
      desktop/core/src/desktop/js/parse/sql/ksql/ksqlSyntaxParser.js
  25. 0 0
      desktop/core/src/desktop/js/parse/sql/phoenix/phoenixAutocompleteParser.js
  26. 0 0
      desktop/core/src/desktop/js/parse/sql/phoenix/phoenixSyntaxParser.js
  27. 0 0
      desktop/core/src/desktop/js/parse/sql/presto/prestoAutocompleteParser.js
  28. 0 0
      desktop/core/src/desktop/js/parse/sql/presto/prestoSyntaxParser.js
  29. 1 1
      package-lock.json

+ 1 - 1
desktop/core/src/desktop/js/parse/jison/sql/calcite/sql_insert.jison

@@ -59,7 +59,7 @@ InsertValuesStatement_EDIT
 
 InsertValuesList
  : ParenthesizedRowValuesList
- | RowValuesList ',' ParenthesizedRowValuesList
+ | InsertValuesList ',' ParenthesizedRowValuesList
  ;
 
 ParenthesizedRowValuesList

+ 1 - 1
desktop/core/src/desktop/js/parse/jison/sql/druid/sql_insert.jison

@@ -59,7 +59,7 @@ InsertValuesStatement_EDIT
 
 InsertValuesList
  : ParenthesizedRowValuesList
- | RowValuesList ',' ParenthesizedRowValuesList
+ | InsertValuesList ',' ParenthesizedRowValuesList
  ;
 
 ParenthesizedRowValuesList

+ 1 - 1
desktop/core/src/desktop/js/parse/jison/sql/elasticsearch/sql_insert.jison

@@ -59,7 +59,7 @@ InsertValuesStatement_EDIT
 
 InsertValuesList
  : ParenthesizedRowValuesList
- | RowValuesList ',' ParenthesizedRowValuesList
+ | InsertValuesList ',' ParenthesizedRowValuesList
  ;
 
 ParenthesizedRowValuesList

+ 1 - 1
desktop/core/src/desktop/js/parse/jison/sql/flink/sql_insert.jison

@@ -59,7 +59,7 @@ InsertValuesStatement_EDIT
 
 InsertValuesList
  : ParenthesizedRowValuesList
- | RowValuesList ',' ParenthesizedRowValuesList
+ | InsertValuesList ',' ParenthesizedRowValuesList
  ;
 
 ParenthesizedRowValuesList

+ 1 - 1
desktop/core/src/desktop/js/parse/jison/sql/generic/sql_insert.jison

@@ -59,7 +59,7 @@ InsertValuesStatement_EDIT
 
 InsertValuesList
  : ParenthesizedRowValuesList
- | RowValuesList ',' ParenthesizedRowValuesList
+ | InsertValuesList ',' ParenthesizedRowValuesList
  ;
 
 ParenthesizedRowValuesList

+ 1 - 1
desktop/core/src/desktop/js/parse/jison/sql/hive/sql_insert.jison

@@ -255,7 +255,7 @@ GenericInsert_EDIT
 
 InsertValuesList
  : ParenthesizedRowValuesList
- | RowValuesList ',' ParenthesizedRowValuesList
+ | InsertValuesList ',' ParenthesizedRowValuesList
  ;
 
 ParenthesizedRowValuesList

+ 1 - 1
desktop/core/src/desktop/js/parse/jison/sql/ksql/sql_insert.jison

@@ -59,7 +59,7 @@ InsertValuesStatement_EDIT
 
 InsertValuesList
  : ParenthesizedRowValuesList
- | RowValuesList ',' ParenthesizedRowValuesList
+ | InsertValuesList ',' ParenthesizedRowValuesList
  ;
 
 ParenthesizedRowValuesList

+ 1 - 1
desktop/core/src/desktop/js/parse/jison/sql/phoenix/sql_insert.jison

@@ -59,7 +59,7 @@ InsertValuesStatement_EDIT
 
 InsertValuesList
  : ParenthesizedRowValuesList
- | RowValuesList ',' ParenthesizedRowValuesList
+ | InsertValuesList ',' ParenthesizedRowValuesList
  ;
 
 ParenthesizedRowValuesList

+ 1 - 1
desktop/core/src/desktop/js/parse/jison/sql/presto/sql_insert.jison

@@ -255,7 +255,7 @@ GenericInsert_EDIT
 
 InsertValuesList
  : ParenthesizedRowValuesList
- | RowValuesList ',' ParenthesizedRowValuesList
+ | InsertValuesList ',' ParenthesizedRowValuesList
  ;
 
 ParenthesizedRowValuesList

+ 1 - 1
desktop/core/src/desktop/js/parse/jison/sql_insert.jison

@@ -299,7 +299,7 @@ InsertValuesStatement_EDIT
 
 InsertValuesList
  : ParenthesizedRowValuesList
- | RowValuesList ',' ParenthesizedRowValuesList
+ | InsertValuesList ',' ParenthesizedRowValuesList
  ;
 
 ParenthesizedRowValuesList

Fichier diff supprimé car celui-ci est trop grand
+ 0 - 0
desktop/core/src/desktop/js/parse/sql/calcite/calciteAutocompleteParser.js


Fichier diff supprimé car celui-ci est trop grand
+ 0 - 0
desktop/core/src/desktop/js/parse/sql/calcite/calciteSyntaxParser.js


Fichier diff supprimé car celui-ci est trop grand
+ 0 - 0
desktop/core/src/desktop/js/parse/sql/druid/druidAutocompleteParser.js


Fichier diff supprimé car celui-ci est trop grand
+ 0 - 0
desktop/core/src/desktop/js/parse/sql/druid/druidSyntaxParser.js


Fichier diff supprimé car celui-ci est trop grand
+ 0 - 0
desktop/core/src/desktop/js/parse/sql/elasticsearch/elasticsearchAutocompleteParser.js


Fichier diff supprimé car celui-ci est trop grand
+ 0 - 0
desktop/core/src/desktop/js/parse/sql/elasticsearch/elasticsearchSyntaxParser.js


Fichier diff supprimé car celui-ci est trop grand
+ 0 - 0
desktop/core/src/desktop/js/parse/sql/flink/flinkAutocompleteParser.js


Fichier diff supprimé car celui-ci est trop grand
+ 0 - 0
desktop/core/src/desktop/js/parse/sql/flink/flinkSyntaxParser.js


Fichier diff supprimé car celui-ci est trop grand
+ 0 - 0
desktop/core/src/desktop/js/parse/sql/generic/genericAutocompleteParser.js


Fichier diff supprimé car celui-ci est trop grand
+ 0 - 0
desktop/core/src/desktop/js/parse/sql/generic/genericSyntaxParser.js


Fichier diff supprimé car celui-ci est trop grand
+ 0 - 0
desktop/core/src/desktop/js/parse/sql/hive/hiveAutocompleteParser.js


Fichier diff supprimé car celui-ci est trop grand
+ 0 - 0
desktop/core/src/desktop/js/parse/sql/hive/hiveSyntaxParser.js


Fichier diff supprimé car celui-ci est trop grand
+ 0 - 0
desktop/core/src/desktop/js/parse/sql/ksql/ksqlAutocompleteParser.js


Fichier diff supprimé car celui-ci est trop grand
+ 0 - 0
desktop/core/src/desktop/js/parse/sql/ksql/ksqlSyntaxParser.js


Fichier diff supprimé car celui-ci est trop grand
+ 0 - 0
desktop/core/src/desktop/js/parse/sql/phoenix/phoenixAutocompleteParser.js


Fichier diff supprimé car celui-ci est trop grand
+ 0 - 0
desktop/core/src/desktop/js/parse/sql/phoenix/phoenixSyntaxParser.js


Fichier diff supprimé car celui-ci est trop grand
+ 0 - 0
desktop/core/src/desktop/js/parse/sql/presto/prestoAutocompleteParser.js


Fichier diff supprimé car celui-ci est trop grand
+ 0 - 0
desktop/core/src/desktop/js/parse/sql/presto/prestoSyntaxParser.js


+ 1 - 1
package-lock.json

@@ -12638,7 +12638,7 @@
     "process-nextick-args": {
       "version": "2.0.0",
       "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.0.tgz",
-      "integrity": "sha1-o31zL0JxtKsa0HDTVQjoKQeI/6o="
+      "integrity": "sha512-MtEC1TqN0EU5nephaJ4rAtThHtC86dNN9qCuEhtshvpVBkAW5ZO7BASN9REnF9eoXGcRub+pFuKEpOHE+HbEMw=="
     },
     "progress": {
       "version": "2.0.3",

Certains fichiers n'ont pas été affichés car il y a eu trop de fichiers modifiés dans ce diff