Hello,
I have a PostgreSQL database that contains a number of tables, that contain columns of types such as geometry(Point),ltree and so on.
When I invoke SharpData with the command,
x open sharpdata -db postgres -db.connection $MYDB
On these tables, I see the error that is documented at:
https://www.npgsql.org/doc/faq.html#a-nameunknowntypei-get-an-exception-the-field-field1-has-a-type-currently-unknown-to-npgsql-oid-xxxxx-you-can-retrieve-it-as-a-string-by-marking-it-as-unknowna
http://localhost:5000/db/main/mytable?format=json&take=100
Error messages reads as follows:
The field ‘xxxx’ has type ‘public.geography’, which is currently unknown to Npgsql. You can retrieve it as a string by marking it as unknown, please see the FAQ.
I reviewed the code at:
Based on the code,
using args.tables, such as in the example,
args.tables Customer,Order,OrderDetail,Category,Product,Employee,EmployeeTerritory,Shipper,Supplier,Region,T
erritory
it is possible to filter tables shown in UI.
Is it possible to similarly, configure specific columns to be configured such that they are either completely ignored
or converted to string using a default/custom javascript function?
Thanks.