Joe Abbate
Joe Abbate
If you search for "markdown" on godoc.org, the first item that comes up is "github.com/russross/blackfriday" with 2160 imports and 3780 stars ATM. If you click on it, you're taken to...
I have just converted a small program from libpq to libpqxx, but although the new code in general is much easier to read, the transaction and connection handling have become...
Initially reported by @alexitheodore in issue #226 starting from 2-Nov-2021. A sample traceback is as follows: ``` File "/usr/local/lib/python2.7/dist-packages/pyrseas/dbobject/trigger.py", line 156, in to_map dct = super(Trigger, self).to_map(db) File "/usr/local/lib/python2.7/dist-packages/pyrseas/dbobject/__init__.py", line...
Test case: ```sql CREATE TABLE "order" ( c1 integer UNIQUE, c2 text); ``` Running `dbtoyaml` causes error in https://github.com/perseas/Pyrseas/blob/fdbb76d05c87dcd92941f3b48309f7dfe4ccf45f/pyrseas/dbobject/table.py#L927 as follows: `KeyError: ('public', '"order"')`. The same problem occurs if `UNIQUE`...
See issue #163. In order to release 0.8, support for partitions defined using expressions, e.g., `extract(year FROM some_date)`, will be addressed separately, either in 0.9 or some maintenance release of...
This can be seen in `tests.dbobject.test_eventtrig.EventTriggerToSqlTestCase` `test_create_event_trigger_func_schema`. The function `s1.f1()` is split into `('public, 's1.f1', '')` instead of `('s1', 'f1', '')`. This test has been disabled until a fix is...
Issue #175, the `test_operclass.py` tests that were marked `xfail` in the last phase of dealing with #176 and issue #183 (probably also #184) all point to deficiencies in Pyrseas knowledge...
Differencing database versions is insufficient in some cases, e.g., ALTER TABLE ALTER COLUMN datatype, so Pyrseas should incorporate non-differencing approaches to handle these cases. See [The Future of Pyrseas –...
The deptrack changes fetch OIDs for all database objects. However, input objects lack OIDs. This inconsistency needs to be reconciled or explained. It is presumed that in some cases we...
https://gin-gonic.com/docs/ has a "Documentation" link that directs to itself. It would make more sense to link it to either https://pkg.go.dev/github.com/gin-gonic/gin?tab=doc or https://godoc.org/github.com/gin-gonic/gin.