Bryan Morris
Bryan Morris
@sdhull I needed the dom renderer to work myself. I think I have the "easy win" solution. ``` const tagNames = require('mobiledoc-dom-renderer/dist/commonjs/mobiledoc-dom-renderer/utils/tag-names') tagNames.isValidMarkerType = function () { return true }...
I was also trying to insert a blank Person with the following query, not sure if this is related. But it is the same error. ``` await e.insert(e.Person, {}).run(client) InternalServerError:...
No it does not, yet... It is planned and has been designed with the knowledge that it will be added in the future.
Thank you for the PR. I'm going to pass on this for now. This makes the API somewhat confusing IMHO. If you pass `r` then all other connection options are...
Thanks for the feedback. You might be able to work around this by passing your own instance of sequelize to the sqlgrid constuctor. If you try that, please let me...
> Your SQLGrid + CockroachDB actually makes an interesting project. Thank you! I am familiar with what CRDB is doing, it looks neat. Did you try my earlier suggestion by...
Also about your specific suggestion.... I assume you are saying I have to avoid any `sequelize.findOrCreate()` calls? Do we know that there is no penalty for postgres users by going...
I really think you can sidestep the issue entirely if you instantiate SQLGrid with a `sequelize-cockroach` instance..... ```javascript var Sequelize = require('sequelize-cockroachdb') var sequelize = new Sequelize('bank', 'maxroach', '', {...
That's unfortunate... I also found this... https://github.com/cockroachdb/sequelize-cockroachdb/issues/15 I assume it's the same error you got?
Great! I would certainly prefer it be fixed upstream since that is better overall.