8000 update expr · chenkovsky/datafusion-python@43f9045 · GitHub
[go: up one dir, main page]

Skip to content

Commit 43f9045

Browse files
authored
update expr
Update expr.py
2 parents fbe4e92 + 088d312 commit 43f9045

File tree

1 file changed

+50
-0
lines changed

1 file changed

+50
-0
lines changed

python/datafusion/expr.py

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,14 +54,29 @@
5454
Case = expr_internal.Case
5555
Cast = expr_internal.Cast
5656
Column = expr_internal.Column
57+
CopyTo = expr_internal.CopyTo
58+
CreateCatalog = expr_internal.CreateCatalog
59+
CreateCatalogSchema = expr_internal.CreateCatalogSchema
60+
CreateExternalTable = expr_internal.CreateExternalTable
61+
CreateFunction = expr_internal.CreateFunction
62+
CreateFunctionBody = expr_internal.CreateFunctionBody
63+
CreateIndex = expr_internal.CreateIndex
5764
CreateMemoryTable = expr_internal.CreateMemoryTable
5865
CreateView = expr_internal.CreateView
66+
Deallocate = expr_internal.Deallocate
67+
DescribeTable = expr_internal.DescribeTable
5968
Distinct = expr_internal.Distinct
69+
DmlStatement = expr_internal.DmlStatement
70+
DropCatalogSchema = expr_internal.DropCatalogSchema
71+
DropFunction = expr_internal.DropFunction
6072
DropTable = expr_internal.DropTable
73+
DropView = expr_internal.DropView
6174
EmptyRelation = expr_internal.EmptyRelation
75+
Execute = expr_internal.Execute
6276
Exists = expr_internal.Exists
6377
Explain = expr_internal.Explain
6478
Extension = expr_internal.Extension
79+
FileType = expr_internal.FileType
6580
Filter = expr_internal.Filter
6681
GroupingSet = expr_internal.GroupingSet
6782
Join = expr_internal.Join
@@ -83,21 +98,31 @@
8398
Literal = expr_internal.Literal
8499
Negative = expr_internal.Negative
85100
Not = expr_internal.Not
101+
OperateFunctionArg = expr_internal.OperateFunctionArg
86102
Partitioning = expr_internal.Partitioning
87103
Placeholder = expr_internal.Placeholder
104+
Prepare = expr_internal.Prepare
88105
Projection = expr_internal.Projection
106+
RecursiveQuery = expr_internal.RecursiveQuery
89107
Repartition = expr_internal.Repartition
90108
ScalarSubquery = expr_internal.ScalarSubquery
91109
ScalarVariable = expr_internal.ScalarVariable
110+
SetVariable = expr_internal.SetVariable
92111
SimilarTo = expr_internal.SimilarTo
93112
Sort = expr_internal.Sort
94113
Subquery = expr_internal.Subquery
95114
SubqueryAlias = expr_internal.SubqueryAlias
96115
TableScan = expr_internal.TableScan
116+
TransactionAccessMode = expr_internal.TransactionAccessMode
117+
TransactionConclusion = expr_internal.TransactionConclusion
118+
TransactionEnd = expr_internal.TransactionEnd
119+
TransactionIsolationLevel = expr_internal.TransactionIsolationLevel
120+
TransactionStart = expr_internal.TransactionStart
97121
TryCast = expr_internal.TryCast
98122
Union = expr_internal.Union
99123
Unnest = expr_internal.Unnest
100124
UnnestExpr = expr_internal.UnnestExpr
125+
Values = expr_internal.Values
101126
WindowExpr = expr_internal.WindowExpr
102127

103128
__all__ = [
@@ -111,15 +136,30 @@
111136
"CaseBuilder",
112137
"Cast",
113138
"Column",
139+
"CopyTo",
140+
"CreateCatalog",
141+
"CreateCatalogSchema",
142+
"CreateExternalTable",
143+
"CreateFunction",
144+
"CreateFunctionBody",
145+
"CreateIndex",
114146
"CreateMemoryTable",
115147
"CreateView",
148+
"Deallocate",
149+
"DescribeTable",
116150
"Distinct",
151+
"DmlStatement",
152+
"DropCatalogSchema",
153+
"DropFunction",
117154
"DropTable",
155+
"DropView",
118156
"EmptyRelation",
157+
"Execute",
119158
"Exists",
120159
"Explain",
121160
"Expr",
122161
"Extension",
162+
"FileType",
123163
"Filter",
124164
"GroupingSet",
125165
"ILike",
@@ -142,22 +182,32 @@
142182
"Literal",
143183
"Negative",
144184
"Not",
185+
"OperateFunctionArg",
145186
"Partitioning",
146187
"Placeholder",
188+
"Prepare",
147189
"Projection",
190+
"RecursiveQuery",
148191
"Repartition",
149192
"ScalarSubquery",
150193
"ScalarVariable",
194+
"SetVariable",
151195
"SimilarTo",
152196
"Sort",
153197
"SortExpr",
154198
"Subquery",
155199
"SubqueryAlias",
156200
"TableScan",
201+
"TransactionAccessMode",
202+
"TransactionConclusion",
203+
"TransactionEnd",
204+
"TransactionIsolationLevel",
205+
"TransactionStart",
157206
"TryCast",
158207
"Union",
159208
"Unnest",
160209
"UnnestExpr",
210+
"Values",
161211
"Window",
162212
"WindowExpr",
163213
"WindowFrame",

0 commit comments

Comments
 (0)
0