Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
P
physical
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
alpha
physical
Commits
8c9bc355
Commit
8c9bc355
authored
6 years ago
by
段英荣
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
modify topic transfer
parent
452a3aeb
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
0 deletions
+9
-0
table_scan.py
libs/table_scan.py
+9
-0
No files found.
libs/table_scan.py
View file @
8c9bc355
...
@@ -149,12 +149,21 @@ class TableSlicerChunk(ITableChunk):
...
@@ -149,12 +149,21 @@ class TableSlicerChunk(ITableChunk):
class
TableSlicer
(
object
):
class
TableSlicer
(
object
):
def
__init__
(
self
,
queryset
,
chunk_size
=
None
,
chunk_count
=
None
,
sep_list
=
None
):
def
__init__
(
self
,
queryset
,
chunk_size
=
None
,
chunk_count
=
None
,
sep_list
=
None
):
logging
.
info
(
"duan add,before assert queryset"
)
assert
isinstance
(
queryset
,
models
.
QuerySet
)
assert
isinstance
(
queryset
,
models
.
QuerySet
)
logging
.
info
(
"duan add,before assert chunk_size"
)
assert
chunk_size
is
None
or
isinstance
(
chunk_size
,
six
.
integer_types
)
assert
chunk_size
is
None
or
isinstance
(
chunk_size
,
six
.
integer_types
)
logging
.
info
(
"duan add,before assert chunk_count"
)
assert
chunk_count
is
None
or
isinstance
(
chunk_count
,
six
.
integer_types
)
assert
chunk_count
is
None
or
isinstance
(
chunk_count
,
six
.
integer_types
)
logging
.
info
(
"duan add,before assert sep_list"
)
assert
sep_list
is
None
or
isinstance
(
sep_list
,
list
)
assert
sep_list
is
None
or
isinstance
(
sep_list
,
list
)
logging
.
info
(
"duan add,before assert chunk_size"
)
assert
(
chunk_size
is
not
None
)
+
(
chunk_count
is
not
None
)
+
(
sep_list
is
not
None
)
==
1
assert
(
chunk_size
is
not
None
)
+
(
chunk_count
is
not
None
)
+
(
sep_list
is
not
None
)
==
1
logging
.
info
(
"duan add,after assert chunk_size"
)
if
sep_list
is
not
None
:
if
sep_list
is
not
None
:
sep_list
=
list
(
sep_list
)
sep_list
=
list
(
sep_list
)
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment