Skip to content

Commit

Permalink
Merge pull request #124 from nrdvana/master
Browse files Browse the repository at this point in the history
10x speedup for quote_name implementation
  • Loading branch information
turnstep authored Mar 7, 2024
2 parents 467d507 + 4d0650c commit f3d3c92
Show file tree
Hide file tree
Showing 5 changed files with 1,991 additions and 447 deletions.
9 changes: 8 additions & 1 deletion Pg.xs
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,14 @@ quote(dbh, to_quote_sv, type_sv=Nullsv)
}
OUTPUT:
RETVAL


# Primarily for unit test...
bool
_is_keyword(const char *str)
CODE:
RETVAL = is_keyword(str);
OUTPUT:
RETVAL

# ------------------------------------------------------------
# database level interface PG specific
Expand Down
Loading

0 comments on commit f3d3c92

Please sign in to comment.