[CUBRIDQA-1240] Added the showTrace option to SystemModel in CTP to refrain from converting numeric values to '?' for trace statistics when set to true #690
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Refer to: http://jira.cubrid.org/browse/CUBRIDQA-1240
SHOW TRACE; 를 CTP에서 사용했을때 출력되는 trace statistics에 관하여 showTrace 옵션을 도입할 것을 제안합니다. 본 옵션은 사용자가 트레이스 통계에서 숫자 값을 유지하거나 '?'로 변환할 수 있는 설정을 제공합니다.
해당 옵션은 다음과 같이 동작합니다:
In CTP/sql/configuration/System.xml,
showTrace = false (기본값)
<showTrace>false</showTrace>
false(기본값)로 설정된 경우, 기존 동작과 동일하게 SHOW TRACE 출력의 숫자 값이 자동으로 '?'로 변환됩니다.
showTrace = true
<showTrace>true</showTrace>
true로 설정된 경우, SHOW TRACE 출력에 변환되지 않은 기존의 숫자 값이 표시됩니다.
Notes