Mukesh
Mukesh
+1 Moreover pip freeze includes virtualenv-burrito packages
Sure @ratika-12. I have assigned the issue to you. Since the issue depends on #1205, please use `mathesar-1105-money-display-option` as your base branch. Thanks for the help!
@shivams https://github.com/centerofci/mathesar/discussions/1243#discussioncomment-2519195 has the display options spec for `MathesarMoney` type. We need to be able to pre-fill those display options(currency_symbol_location and number_format) with the correct value. We infer the currency...
I would like to work on this issue. I am planning to query pg_constraint for foreign keys and pg_depend for view dependencies.
I am thinking of something like ```sql WITH RECURSIVE tree AS ( SELECT c.oid::regclass AS current, null::regclass AS previous, 0 as level, ARRAY[c.oid] as path FROM pg_class c where relname='dag_table'...
I like the approach in Pg_depend_display without pg_identify_object as pg_identify_object returns table name string instead of an oid, which works for a report, but in our case we might be...
I was thinking of making the queries modular for each dependency type and using a Union query, but using CASE seem to be better. The pg_depend_display looks very detailed and...
> you're recursively building a dependency graph and then testing the current node for membership in the path from the root to the parent, is that correct? Yes, that is...
We definitely cannot expect 100% consistent codebase, but we can add a few rules that would choose one style over the other when given two sensible options