paleolimbot commented on issue #179:
URL: https://github.com/apache/sedona-db/issues/179#issuecomment-3365820964

   Reprex:
   
   ```python
   import duckdb
   import sedona.db
   
   sd = sedona.db.connect()
   sd.sql("SELECT '💩💩💩💩' as foofy").show()
   #> ┌──────────┐
   #> │   foofy  │
   #> │   utf8   │
   #> ╞══════════╡
   #> │ 💩💩💩💩 │
   #> └──────────┘
   
   duckdb.sql("SELECT '💩💩💩💩' as foofy").show()
   #> ┌──────────┐
   #> │  foofy   │
   #> │ varchar  │
   #> ├──────────┤
   #> │ 💩💩💩💩 │
   #> └──────────┘
   ```
   
   Not sure there's an easy way around this one...the fallback rendering of 
just about any terminal will almost always render non-equal width characters 
when it can't find a monospace pile of poo, for example.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to