Skip to content

Commit

Permalink
Merge pull request #92 from PlaidCloud/sc16742
Browse files Browse the repository at this point in the history
Use nullable smallints and tinyints when converting dataframe
  • Loading branch information
inviscid authored Jun 6, 2024
2 parents 78cd8e0 + e234e8c commit dd659b6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plaidcloud/rpc/type_conversion.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,8 @@
r'^text$': 'object',
r'^nvarchar.*$': 'object',
r'^varchar.*$': 'object',
r'^tinyint$': 'int8',
r'^smallint$': 'int16',
r'^tinyint$': 'Int8',
r'^smallint$': 'Int16',
r'^integer$': 'Int64',
r'^bigint$': 'Int64',
r'^numeric$': 'float64',
Expand Down

0 comments on commit dd659b6

Please sign in to comment.