Dave Greene
Dave Greene
Looks like a bug. Seems like the sorting is done after the `->format()` call is done and is just doing string sorting without any kind of comparison method.
My interim solution is to output all dates as ISO-8601 strings (which are nicely string sortable) and then doing something like this: ``` php $table->setCallbacks('rowCallback', "function(row, data, index) { _.forEach(data,...
@timgws see my [comment](https://github.com/Chumper/Datatable/issues/296#issuecomment-144429568) about how sorting is being done after the column is being formatted. See `CollectionEngine::getArray()`, specifically the call to `compileArray()` before `doInternalOrder()`. `compileArray()` renders the column which,...
A little follow-up. This happens because line 126 of `CollectionEngine.php` has this: ``` php return $this->workingCollection->slice($this->skip,$this->limit); ``` Here's the signature for `Collection->slice()`: ``` php slice(int $offset, int $length = null,...
This is still an issue. Any maintainers interested in taking a look?
@nikola-jokic it looks like you're the primary contributor these days. This is a tiny change and fixes an issue that's been persistent for a year. Can we get it merged...
Edit: I figured out the issue. The buildx kubernetes driver uses deployments: https://github.com/docker/buildx/blob/master/driver/kubernetes/factory.go#L146 Might be useful to call it out in docs as the wording I noted below seems to...
I've got a little more testing to do but it looks like this breaks scheduling when there are no `CSIStorageCapacity` objects. See https://kubernetes.io/docs/concepts/storage/storage-capacity/#scheduling for the condition that's being triggered.
> `CSIStorageCapacity` objects are automatically created by the external-provisioner for the StorageClasses that use `WaitForFirstConsumer` volume binding mode. This has been enabled since version `v1.10.0`. So then a longhorn storage...
`WaitForFirstConsumer` mode worked perfectly before v1.10.0; I've been using a `StorageClass` with it set that way for the past 9 months. There's a risk in doing that in case the...