• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

georgia-tech-db / eva / #757

04 Sep 2023 08:37PM UTC coverage: 88.174% (+9.8%) from 78.333%
#757

push

circle-ci

hershd23
Increased underline length in at line 75 in text_summarization.rst
	modified:   docs/source/benchmarks/text_summarization.rst

9708 of 11010 relevant lines covered (88.17%)

0.88 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

82.93
/evadb/parser/types.py
1
# coding=utf-8
2
# Copyright 2018-2023 EvaDB
3
#
4
# Licensed under the Apache License, Version 2.0 (the "License");
5
# you may not use this file except in compliance with the License.
6
# You may obtain a copy of the License at
7
#
8
#     http://www.apache.org/licenses/LICENSE-2.0
9
#
10
# Unless required by applicable law or agreed to in writing, software
11
# distributed under the License is distributed on an "AS IS" BASIS,
12
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
# See the License for the specific language governing permissions and
14
# limitations under the License.
15

16
from evadb.utils.generic_utils import EvaDBEnum
1✔
17

18

19
class ColumnConstraintEnum(EvaDBEnum):
1✔
20
    NOTNULL  # noqa: F821
1✔
21
    DEFAULT  # noqa: F821
1✔
22
    PRIMARY  # noqa: F821
1✔
23
    UNIQUE  # noqa: F821
1✔
24

25

26
class StatementType(EvaDBEnum):
1✔
27
    """
28
    Manages EvaDBEnums for all the sql-like statements supported
29
    """
30

31
    SELECT  # noqa: F821
1✔
32
    CREATE  # noqa: F821
1✔
33
    RENAME  # noqa: F821
1✔
34
    DROP_OBJECT  # noqa: F821
1✔
35
    INSERT  # noqa: F821
1✔
36
    DELETE  # noqa: F821
1✔
37
    CREATE_UDF  # noqa: F821
1✔
38
    LOAD_DATA  # noqa: F821
1✔
39
    SHOW  # noqa: F821
1✔
40
    EXPLAIN  # noqa: F821
1✔
41
    CREATE_INDEX  # noqa: F821
1✔
42
    CREATE_DATABASE  # noqa: F821
1✔
43
    USE  # noqa: F821
×
44
    # add other types
45

46

47
class ParserOrderBySortType(EvaDBEnum):
1✔
48
    """
49
    Manages EvaDBEnums for all order by sort types
50
    """
51

52
    ASC  # noqa: F821
1✔
53
    DESC  # noqa: F821
×
54

55

56
class JoinType(EvaDBEnum):
1✔
57
    LATERAL_JOIN  # noqa: F821
1✔
58
    INNER_JOIN  # noqa: F821
×
59

60

61
class FileFormatType(EvaDBEnum):
1✔
62
    VIDEO  # noqa: F821
1✔
63
    CSV  # noqa: F821
1✔
64
    IMAGE  # noqa: F821
1✔
65
    DOCUMENT  # noqa: F821
1✔
66
    PDF  # noqa: F821
×
67

68

69
class ShowType(EvaDBEnum):
1✔
70
    UDFS  # noqa: F821
1✔
71
    TABLES  # noqa: F821
×
72

73

74
class UDFType(EvaDBEnum):
1✔
75
    EXTRACT_OBJECT  # noqa: F821
×
76

77

78
class ObjectType(EvaDBEnum):
1✔
79
    TABLE  # noqa: F821
1✔
80
    UDF  # noqa: F821
1✔
81
    INDEX  # noqa: F821
×
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc