## Syntax ```mermaid %%{init: { 'theme': 'base', 'flowchart': { 'padding': '7', 'nodeSpacing': '20', 'rankSpacing': '20' }, 'themeVariables': { 'fontSize': '11px', 'fontFamily': 'Arial' } }}%% flowchart LR stmt_start((START)) stmt_start --> stmt_0_0[RESULT_SET_SERIALIZATION]:::quoted stmt_0_0 --> stmt_0_1["("]:::quoted stmt_0_1 --> stmt_0_2[SHOW]:::quoted stmt_0_1 --> stmt_0_3[HIDE]:::quoted stmt_0_3 --> stmt_0_4[")"]:::quoted stmt_0_2 --> stmt_0_4 stmt_0_4 --> stmt_end((END)) ``` The `result_set_serialization`-hint extends the metadata of the result set by a hint for processing software such as [[Invantive Data Access Point]] that the result set should be serialized. The default is `show`. ## Examples The results of the query are not returned in the JSON answer from an Invantive Data Access Point preset being executed: ```sql select /*+ result_set_serialization(hide) */ count(*) from MyCustomersTable@postgresql ```