File tree Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 7
7
* Add - Expose proxy feature for S3 external stores (#961 ) PR #962
8
8
* Bugfix - Dependencies not properly loaded on populate. (#902 ) PR #919
9
9
* Bugfix - Replace use of numpy aliases of built-in types with built-in type. (#938 ) PR #939
10
- * Bugfix - Deletes and drops must include the master of each part. (#151 and #374 ) PR #957
10
+ * Bugfix - Deletes and drops must include the master of each part. (#151 , #374 ) PR #957
11
11
* Bugfix - ` ExternalTable.delete ` should not remove row on error (#953 ) PR #956
12
12
* Bugfix - Fix error handling of remove_object function in ` s3.py ` (#952 ) PR #955
13
13
* Bugfix - Fix regression issue with ` DISTINCT ` clause and ` GROUP_BY ` (#914 ) PR #963
134
134
* Fix #628 - incompatibility with pyparsing 2.4.1
135
135
136
136
### 0.11.1 -- Nov 15, 2018
137
- * Fix ordering of attributes in proj (#483 and #516 )
137
+ * Fix ordering of attributes in proj (#483 , #516 )
138
138
* Prohibit direct insert into auto-populated tables (#511 )
139
139
140
140
### 0.11.0 -- Oct 25, 2018
Original file line number Diff line number Diff line change 6
6
* Add - Expose proxy feature for S3 external stores (#961) PR #962
7
7
* Bugfix - Dependencies not properly loaded on populate. (#902) PR #919
8
8
* Bugfix - Replace use of numpy aliases of built-in types with built-in type. (#938) PR #939
9
- * Bugfix - Deletes and drops must include the master of each part. (#151 and #374) PR #957
9
+ * Bugfix - Deletes and drops must include the master of each part. (#151, #374) PR #957
10
10
* Bugfix - `ExternalTable.delete ` should not remove row on error (#953) PR #956
11
11
* Bugfix - Fix error handling of remove_object function in `s3.py ` (#952) PR #955
12
12
* Bugfix - Fix sql code generation to comply with sql mode ``ONLY_FULL_GROUP_BY `` (#916) PR #965
141
141
142
142
0.11.1 -- Nov 15, 2018
143
143
----------------------
144
- * Fix ordering of attributes in proj (#483 and #516)
144
+ * Fix ordering of attributes in proj (#483, #516)
145
145
* Prohibit direct insert into auto-populated tables (#511)
146
146
147
147
0.11.0 -- Oct 25, 2018
Original file line number Diff line number Diff line change @@ -192,6 +192,7 @@ class Website(dj.Part):
192
192
"""
193
193
194
194
def populate_random (self , n = 10 ):
195
+ faker .Faker .seed (0 )
195
196
fake = faker .Faker ()
196
197
faker .Faker .seed (0 ) # make tests deterministic
197
198
for _ in range (n ):
You can’t perform that action at this time.
0 commit comments