Classes | Functions | Variables

VariadicSQLParser.cpp File Reference

#include "VariadicSQLParser.h"
#include "BitStream.h"
#include <stdarg.h>
Include dependency graph for VariadicSQLParser.cpp:

Go to the source code of this file.

Classes

struct  TypeMapping

Functions

unsigned int GetTypeMappingIndex (char c)

Variables

const int NUM_TYPE_MAPPINGS = 7
TypeMapping typeMappings [NUM_TYPE_MAPPINGS]

Function Documentation

unsigned int GetTypeMappingIndex ( char  c  ) 

Definition at line 23 of file VariadicSQLParser.cpp.

Here is the caller graph for this function:


Variable Documentation

const int NUM_TYPE_MAPPINGS = 7

Definition at line 12 of file VariadicSQLParser.cpp.

Initial value:
{
        {'i', "int"},
        {'d', "int"},
        {'s', "text"},
        {'b', "bool"},
        {'f', "numeric"},
        {'g', "double precision"},
        {'a', "bytea"},
}

Definition at line 13 of file VariadicSQLParser.cpp.