David E. Wheeler

Results 436 comments of David E. Wheeler

There are a few other examples of functions with potentially-conflicting signatures. In those cases, we suggest that some of the params be cast to avoid the conflicts. See the [docs...

Not AFAIK, because PL/pgSQL (the language in which pgTAP is written) offers only `SQLSTATE`, which is the error code, and and `SQLERRM`, which is the error message. I forgot about...

Looks like the functionality [has been added for 9.2](http://www.depesz.com/2011/07/20/waiting-for-9-2-stacked-diagnostics-in-plpgsql/).

Re-opening so I can keep it on my radar for future improvements.

Looks nice, but the simple case always will. What about very long or complicated queries? How would one go about formatting them?

Yeah, I believe that the `:pattern` argument to `runtests()` only applies the pattern to test functions, not to fixture functions. It looks like this: ``` CREATE OR REPLACE FUNCTION runtests(...

All code to be shipped with pgTAP should go into sql/pgtap.sql.in and in sql/pgtap--1.2.0--1.2.1.sql. If you change any existing functions (as it appears you do in #295), they should also...

`col_not_null()`'s use of `description TEXT DEFAULT NULL` as the last argument might be the reason it works better. Now that we've dropped support for v9.0 and earlier, it might make...

@nikhilweee From #551, the prompt regex is `^[#$%>]`, so it looks like you can use `#`. I tried the `console` parser in Hugo and it worked, although I had to...

I have run into this issue in Drone. I set these environment variables: ``` environment: JEKYLL_ROOTLESS: "1" JEKYLL_UID: "0" JEKYLL_GID: "0" DEBUG: "true" ``` To no avail. The debug output...