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 77* Add - Expose proxy feature for S3 external stores (#961 ) PR #962
88* Bugfix - Dependencies not properly loaded on populate. (#902 ) PR #919
99* 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
1111* Bugfix - ` ExternalTable.delete ` should not remove row on error (#953 ) PR #956
1212* Bugfix - Fix error handling of remove_object function in ` s3.py ` (#952 ) PR #955
1313* Bugfix - Fix regression issue with ` DISTINCT ` clause and ` GROUP_BY ` (#914 ) PR #963
134134* Fix #628 - incompatibility with pyparsing 2.4.1
135135
136136### 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 )
138138* Prohibit direct insert into auto-populated tables (#511 )
139139
140140### 0.11.0 -- Oct 25, 2018
Original file line number Diff line number Diff line change 66* Add - Expose proxy feature for S3 external stores (#961) PR #962
77* Bugfix - Dependencies not properly loaded on populate. (#902) PR #919
88* 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
1010* Bugfix - `ExternalTable.delete ` should not remove row on error (#953) PR #956
1111* Bugfix - Fix error handling of remove_object function in `s3.py ` (#952) PR #955
1212* Bugfix - Fix sql code generation to comply with sql mode ``ONLY_FULL_GROUP_BY `` (#916) PR #965
141141
1421420.11.1 -- Nov 15, 2018
143143----------------------
144- * Fix ordering of attributes in proj (#483 and #516)
144+ * Fix ordering of attributes in proj (#483, #516)
145145* Prohibit direct insert into auto-populated tables (#511)
146146
1471470.11.0 -- Oct 25, 2018
Original file line number Diff line number Diff line change @@ -192,6 +192,7 @@ class Website(dj.Part):
192192 """
193193
194194 def populate_random (self , n = 10 ):
195+ faker .Faker .seed (0 )
195196 fake = faker .Faker ()
196197 faker .Faker .seed (0 ) # make tests deterministic
197198 for _ in range (n ):
You can’t perform that action at this time.
0 commit comments