sql-typechecker 0.0.113 → 0.0.114
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/out/cli.js +1 -1
- package/out/cli.js.map +1 -1
- package/package.json +1 -1
package/out/cli.js
CHANGED
|
@@ -228526,7 +228526,7 @@ $$${f.code}$$ LANGUAGE ${f.language};
|
|
|
228526
228526
|
"row"
|
|
228527
228527
|
)});` : `
|
|
228528
228528
|
const row = res.rows[0];
|
|
228529
|
-
if (row.some(f => f !== null)){
|
|
228529
|
+
if (row && row.some(f => f !== null)){
|
|
228530
228530
|
return ${genFunctionResDeserialization(f.returns, "row")}
|
|
228531
228531
|
} else {
|
|
228532
228532
|
return null;
|