mirror of
https://github.com/FirebirdSQL/firebird.git
synced 2025-01-22 20:43:02 +01:00
Add defaults to RDB$PROFILER.PAUSE_SESSION and RDB$PROFILER.FINISH_SESSION parameters.
This commit is contained in:
parent
a8ae90d9f7
commit
12f8d087d3
@ -139,7 +139,7 @@ If `FLUSH` is `TRUE` the snapshot tables are updated with data up to the current
|
||||
Calling `RDB$PROFILER.PAUSE_SESSION(TRUE)` has the same semantics of calling `RDB$PROFILER.PAUSE_SESSION(FALSE)` followed by `RDB$PROFILER.FLUSH`.
|
||||
|
||||
Input parameters:
|
||||
- `FLUSH` type `BOOLEAN NOT NULL`
|
||||
- `FLUSH` type `BOOLEAN NOT NULL` default `FALSE`
|
||||
|
||||
## Procedure `RESUME_SESSION`
|
||||
|
||||
@ -154,7 +154,7 @@ If `FLUSH` is `TRUE` the snapshot tables are updated with data of the finished s
|
||||
Calling `RDB$PROFILER.FINISH_SESSION(TRUE)` has the same semantics of calling `RDB$PROFILER.FINISH_SESSION(FALSE)` followed by `RDB$PROFILER.FLUSH`.
|
||||
|
||||
Input parameters:
|
||||
- `FLUSH` type `BOOLEAN NOT NULL`
|
||||
- `FLUSH` type `BOOLEAN NOT NULL` default `TRUE`
|
||||
|
||||
## Procedure `CANCEL_SESSION`
|
||||
|
||||
|
@ -526,7 +526,7 @@ ProfilerPackage::ProfilerPackage(MemoryPool& pool)
|
||||
prc_executable,
|
||||
// input parameters
|
||||
{
|
||||
{"FLUSH", fld_bool, false}
|
||||
{"FLUSH", fld_bool, false, "true", {blr_literal, blr_bool, 1}}
|
||||
},
|
||||
// output parameters
|
||||
{
|
||||
@ -551,7 +551,7 @@ ProfilerPackage::ProfilerPackage(MemoryPool& pool)
|
||||
prc_executable,
|
||||
// input parameters
|
||||
{
|
||||
{"FLUSH", fld_bool, false}
|
||||
{"FLUSH", fld_bool, false, "false", {blr_literal, blr_bool, 0}}
|
||||
},
|
||||
// output parameters
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user