Uploaded image for project: 'Flink'
  1. Flink
  2. FLINK-30341

Introduce audit_log system table

    XMLWordPrintableJSON

Details

    Description

      In some scenarios, users need to get the changelog to do some auditing work, such as determining the number of updates and inserts.

      We can provide audit_log system table, users can get the rowkind information column.

      INSERT INTO T VALUES ('1', '2', '3');
      INSERT INTO T VALUES ('1', '4', '5');
      
      SELECT * FROM T$audit_log;
      
      users can get:
      - "+I", "1", "2", "3"
      - "-U", "1", "2", "3";
      - "+U", "1", "4", "5"
      

      Attachments

        Activity

          People

            lzljs3620320 Jingsong Lee
            lzljs3620320 Jingsong Lee
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: