PG10的函数比PG9.6变化不少

前端之家收集整理的这篇文章主要介绍了PG10的函数比PG9.6变化不少前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

---如下是9.6的:

https://www.postgresql.org/docs/9.6/static/functions-admin.html

pg_current_xlog_flush_location()	pg_lsn	Get current transaction log flush location
pg_current_xlog_insert_location()	pg_lsn	Get current transaction log insert location
pg_current_xlog_location()	pg_lsn	Get current transaction log write location


---如下是10的:
https://www.postgresql.org/docs/10/static/functions-admin.html
pg_current_wal_flush_lsn()	pg_lsn	Get current write-ahead log flush location
pg_current_wal_insert_lsn()	pg_lsn	Get current write-ahead log insert location
pg_current_wal_lsn()	pg_lsn	Get current write-ahead log write location 
可以看到,名字都不一样了...
原文链接:https://www.f2er.com/postgresql/193423.html

猜你在找的Postgre SQL相关文章