0

I have been making a text analysis system with AgensGraph.

And I use the SPO model of RDF triple structure as graph-schema. But I faced one problem: AgensGraph doesn't allow CREATE labels.

I think CREATE is one of reserved word in AgensGraph. Is there a way to resolve this?

GhostCat
  • 137,827
  • 25
  • 176
  • 248
G.-G.
  • 62
  • 6

1 Answers1

0

The AgensGraph is one of Graph database Based on Postgres.

So many query language grammar of AgensGraph are almost identical to Postgres.

You can see a nice table of reserved words in PostgreSQL: http://www.postgresql.org/docs/current/static/sql-keywords-appendix.html

An alternative, however, is to enclose the identifier in double-quotes.

hkk
  • 31
  • 3