File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed
Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -2603,6 +2603,7 @@ void StatementSync::SetAllowBareNamedParameters(
26032603 }
26042604
26052605 stmt->allow_bare_named_params_ = args[0 ]->IsTrue ();
2606+ args.GetReturnValue ().Set (stmt->object ());
26062607}
26072608
26082609void StatementSync::SetAllowUnknownNamedParameters (
@@ -2620,6 +2621,7 @@ void StatementSync::SetAllowUnknownNamedParameters(
26202621 }
26212622
26222623 stmt->allow_unknown_named_params_ = args[0 ]->IsTrue ();
2624+ args.GetReturnValue ().Set (stmt->object ());
26232625}
26242626
26252627void StatementSync::SetReadBigInts (const FunctionCallbackInfo<Value>& args) {
@@ -2636,6 +2638,7 @@ void StatementSync::SetReadBigInts(const FunctionCallbackInfo<Value>& args) {
26362638 }
26372639
26382640 stmt->use_big_ints_ = args[0 ]->IsTrue ();
2641+ args.GetReturnValue ().Set (stmt->object ());
26392642}
26402643
26412644void StatementSync::SetReturnArrays (const FunctionCallbackInfo<Value>& args) {
@@ -2652,6 +2655,7 @@ void StatementSync::SetReturnArrays(const FunctionCallbackInfo<Value>& args) {
26522655 }
26532656
26542657 stmt->return_arrays_ = args[0 ]->IsTrue ();
2658+ args.GetReturnValue ().Set (stmt->object ());
26552659}
26562660
26572661void IllegalConstructor (const FunctionCallbackInfo<Value>& args) {
You can’t perform that action at this time.
0 commit comments