Naveen Mahalingam

Results 23 comments of Naveen Mahalingam

Haven't been able to get to this yet. This would need a major rewrite of the table rendering logic and may not be worth the effort. Will keep this open...

Hey yes I got what you are asking for. I should implement some sort of look ahead to figure out the column lengths after merges. Will try to work on...

Hey sorry got busy with "work" work. Will try to get this done soon.

Hey @darbogx I've made some progress with tables where some columns are merged in all the rows. Check out the unit-tests [here](https://github.com/jedib0t/go-pretty/blob/table-complete-merge/table/render_test.go#L592-L615) and [here](https://github.com/jedib0t/go-pretty/blob/table-complete-merge/table/render_test.go#L641-L663). However I'm yet to address your...

Pushed a simpler fix to the same branch. Here is the output now: ``` === RUN TestTable_Render_AutoMerge_WithSomeColumnsCompletelyMergedCustom --- PASS: TestTable_Render_AutoMerge_WithSomeColumnsCompletelyMergedCustom (0.00s) === RUN TestTable_Render_AutoMerge_WithSomeColumnsCompletelyMergedCustom/Column_5-8_with_different_String ┌───┬──────────┬──────────┬──────────┬──────────┬──────────────────────────┬──────────────────────────┬──────────────────────────┬──────────────────────────┐ │ │ COLUMN 1 │...

Hey @darbogx ... I've delivered a [fix](https://github.com/jedib0t/go-pretty/commit/006d8ca28d211be5feecaf7853ed9a026584ea7f) to the main branch using PR #238. Can you please verify it this works for you? Once you confirm, I can cut a...

@cryi I'm not sure I understand your question. Can you open a new issue with: * a better snippet of your code with real calls within the for loop *...

@cryi I think I may have an idea of what you are trying to do... Did you try using the `SetTitle` interface? ```golang package main import ( "fmt" "time" "github.com/jedib0t/go-pretty/v6/table"...

@darbogx I've cut a tag for you: https://github.com/jedib0t/go-pretty/releases/tag/v6.4.1

@travelliu I have a table with a column containing uint64 values such as `16646959493074124803`. With `sijms/go-ora/[email protected]`, row.Scan ends up giving me a float64 with value `16646959493074125000`. With `travelliu/go-ora/v2@mtk`, row.Scan ends...