Skip to content

Commit

Permalink
increase allowed parsed data.frame ncols
Browse files Browse the repository at this point in the history
  • Loading branch information
coolbutuseless committed Mar 6, 2024
1 parent 366f648 commit 3020006
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: yyjsonr
Type: Package
Title: Fast JSON Parser and Generator
Version: 0.1.18.9001
Version: 0.1.18.9002
Authors@R: c(
person("Mike", "Cheng", role = c("aut", "cre", 'cph'),
email = "[email protected]"),
Expand All @@ -21,7 +21,7 @@ BugReports: https://github.com/coolbutuseless/yyjsonr/issues
Encoding: UTF-8
Language: en-AU
Roxygen: list(markdown = TRUE)
RoxygenNote: 7.3.0
RoxygenNote: 7.3.1
Suggests:
bit64,
knitr,
Expand Down
4 changes: 4 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@

# yyjsonr 0.1.18.9002 2024-03-07

* Increase maximum number of allowed data.frame columns (during parsing) to 2048

# yyjsonr 0.1.18.9001 2024-02-01

* Read JSON from '.gz' files in `read_json_file()`
Expand Down
2 changes: 1 addition & 1 deletion src/R-yyjson-parse.h
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@
// just set a high-ish value. Code throws an error if this is
// exceeded during a parse.
//===========================================================================
#define MAX_DF_COLS 128
#define MAX_DF_COLS 2048

//===========================================================================
// Struct of parse options
Expand Down

0 comments on commit 3020006

Please sign in to comment.