10
0
mirror of https://github.com/LCPQ/QUESTDB_website.git synced 2025-01-13 22:36:10 +01:00

8 lines
151 B
Python
Raw Normal View History

from enum import IntEnum,auto,unique
@unique
2019-12-03 15:24:29 +01:00
class Format(IntEnum):
LINE=auto()
2019-12-03 15:24:29 +01:00
COLUMN=auto()
2020-02-21 12:04:26 +01:00
DOUBLECOLUMN=auto()
TBE=auto()
DOUBLETBE=auto()