Skip to content

Commit

Permalink
Merge pull request #612 from SebKrantz/development
Browse files Browse the repository at this point in the history
Development
  • Loading branch information
SebKrantz authored Jul 19, 2024
2 parents 1b852bb + 7f20410 commit 680aebb
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion R/join.R
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ join <- function(x, y,
}

# Check for duplicate columns and suffix as needed
if(any(nm <- match(ynam[-iyon], xnam, nomatch = 0L))) {
if(any(nm <- match(ynam[-iyon], xnam, nomatch = 0L)) && switch(how, semi = FALSE, anti = FALSE, TRUE)) {
nnm <- nm != 0L
nam <- xnam[nm[nnm]]
if(is.character(drop.dup.cols) || drop.dup.cols) {
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

<!-- badges: start -->
[![R-CMD-check](https://github.com/SebKrantz/collapse/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/SebKrantz/collapse/actions/workflows/R-CMD-check.yaml)
[![collapse status badge](https://fastverse.r-universe.dev/badges/collapse)](https://fastverse.r-universe.dev)
[![collapse status badge](https://fastverse.r-universe.dev/badges/collapse)](https://fastverse.r-universe.dev/collapse)
[![CRAN status](https://www.r-pkg.org/badges/version/collapse)](https://cran.r-project.org/package=collapse)
[![cran checks](https://badges.cranchecks.info/worst/collapse.svg)](https://cran.r-project.org/web/checks/check_results_collapse.html)
![downloads per month](http://cranlogs.r-pkg.org/badges/collapse?color=blue)
![downloads](http://cranlogs.r-pkg.org/badges/grand-total/collapse?color=blue)
![downloads per month](http://cranlogs.r-pkg.org/badges/collapse) <!-- ?color=blue -->
![downloads](http://cranlogs.r-pkg.org/badges/grand-total/collapse) <!-- ?color=blue -->
[![Conda Version](https://img.shields.io/conda/vn/conda-forge/r-collapse.svg)](https://anaconda.org/conda-forge/r-collapse)
[![Conda Downloads](https://img.shields.io/conda/dn/conda-forge/r-collapse.svg)](https://anaconda.org/conda-forge/r-collapse)
[![Codecov test coverage](https://codecov.io/gh/SebKrantz/collapse/branch/master/graph/badge.svg)](https://app.codecov.io/gh/SebKrantz/collapse?branch=master)
Expand Down
2 changes: 2 additions & 0 deletions src/base_radixsort.h
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@

#define NAMED_BITS 16

#ifndef DEFN_H
struct sxpinfo_struct {
SEXPTYPE type : TYPE_BITS;
/* ==> (FUNSXP == 99) %% 2^5 == 3 == CLOSXP
Expand Down Expand Up @@ -66,6 +67,7 @@ typedef struct VECTOR_SEXPREC {
SEXPREC_HEADER;
struct vecsxp_struct vecsxp;
} VECTOR_SEXPREC, *VECSEXP;
#endif

typedef struct {
SEXPREC_HEADER;
Expand Down

0 comments on commit 680aebb

Please sign in to comment.