How to specify number of characters for tables that have columns of VARCHAR(n)
data type?
#9647
-
Hello all, I am using MSSQL backend and have the following table in-memory import ibis
t_local = ibis.memtable({"a": [1, 0, 3], "b": ['x', "yy", "abc"]})
print(t_local) InMemoryTable
data:
PandasDataFrameProxy:
a b
0 1 x
1 0 yy
2 3 abc print(t_local.schema()) ibis.Schema {
a int64
b string
} When I call the |
Beta Was this translation helpful? Give feedback.
Answered by
csubhodeep
Jul 21, 2024
Replies: 1 comment
-
Closing in favour of #9382 |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
cpcloud
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Closing in favour of #9382