sql-parser-cst
Advanced tools
Comparing version 0.27.0 to 0.27.1
@@ -9,3 +9,3 @@ export declare const validDialectNames: { | ||
export type DialectName = keyof typeof validDialectNames; | ||
export type ParamType = "?" | "?nr" | ":name" | "$name" | "@name" | "@`name`"; | ||
export type ParamType = "?" | "?nr" | "$nr" | ":name" | "$name" | "@name" | "@`name`"; | ||
export type ParserOptions = { | ||
@@ -12,0 +12,0 @@ dialect: DialectName; |
@@ -5,3 +5,3 @@ { | ||
"license": "GPL-2.0-or-later", | ||
"version": "0.27.0", | ||
"version": "0.27.1", | ||
"main": "lib/main.js", | ||
@@ -8,0 +8,0 @@ "types": "lib/main.d.ts", |
@@ -194,3 +194,3 @@ # SQL Parser CST [![npm version](https://img.shields.io/npm/v/sql-parser-cst)](https://www.npmjs.com/package/sql-parser-cst) ![build status](https://github.com/nene/sql-parser-cst/actions/workflows/build.yml/badge.svg) | ||
- **includeSpaces**: `boolean` Like `includeComments`, but includes horizontal whitespace info to the same fields. | ||
- **paramTypes**: `` ("?" | "?nr" | ":name" | "$name" | "@name" | "`@name`")[] `` | ||
- **paramTypes**: `` ("?" | "?nr" | "$nr" | ":name" | "$name" | "@name" | "`@name`")[] `` | ||
Determines the types of bound parameters supported by the parser. | ||
@@ -197,0 +197,0 @@ By default a query like `SELECT * FROM tbl WHERE id = ?` will result in parse error. |
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
5367243