4919a9ebc4669d592f68cb4feb7c00c650a371d8 angie Thu Mar 21 12:04:08 2019 -0700 Add support for 'db.table' notation where necessary. refs #22440 Most jksql.c functions with table as a parameter already support 'db.table' notation (as opposed to just 'table', e.g. 'hgFixed.cds' as opposed to 'cds'). Here I'm adding a oneShot test program to test all jksql functions that take table as a param; for functions that don't already support 'db.table', parse db.table and temporarily change database for the table query. The motivation is to support using the customTrash connection for safe-storage customData* databases that will appear as 'db.table' e.g. 'customData01.t1_hgwdev_...'. diff --git src/hg/oneShot/testSqlDbDotTable/makefile src/hg/oneShot/testSqlDbDotTable/makefile new file mode 100644 index 0000000..e1a412b --- /dev/null +++ src/hg/oneShot/testSqlDbDotTable/makefile @@ -0,0 +1,3 @@ +kentSrc = ../../.. +A = testSqlDbDotTable +include $(kentSrc)/inc/userApp.mk