aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/sql/v1/sql_call_param.h
blob: 57495afd88f87ee3fbe61f126e413355c66d2937 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#pragma once

#include <util/system/types.h>

namespace NSQLTranslationV1 {

///////////////////////////////////////////////////////////////////////////////////////////////

enum class ESqlCallParam: ui32 {
    InputType       /* "INPUT_TYPE" */, // as is
    OutputType      /* "OUTPUT_TYPE" */, // as is
    Concurrency     /* "CONCURRENCY" */,  // as is
    BatchSize       /* "BATCH_SIZE" */, // as is
    OptimizeFor     /* "OPTIMIZE_FOR" */, // evaluate atom
    Connection      /* "CONNECTION" */, // evaluate atom
    Init            /* "INIT" */,  // as is
};

///////////////////////////////////////////////////////////////////////////////////////////////
}